mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04: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
|