mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
Follow the more naturally flowing naming. Rename both the header and the vblank wait function. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patch.msgid.link/32c2d68a9ae7d2262ad2c63e873e522e67bc78df.1765812266.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
16 lines
328 B
C
16 lines
328 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_INITIAL_PLANE_H__
|
|
#define __INTEL_INITIAL_PLANE_H__
|
|
|
|
struct intel_crtc;
|
|
struct intel_display;
|
|
|
|
void intel_initial_plane_config(struct intel_display *display);
|
|
void intel_initial_plane_vblank_wait(struct intel_crtc *crtc);
|
|
|
|
#endif
|