mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 16:12:59 +02:00
With the intel_dpt.[ch] file names vacated, and i915 specific code moved away, we can rename the intel_dpt_common.[ch] files to the simpler name. Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Link: https://patch.msgid.link/3f2da737a26bb71a7bc05a3e6c456302e3c72656.1772030909.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
17 lines
384 B
C
17 lines
384 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_DPT_COMMON_H__
|
|
#define __INTEL_DPT_COMMON_H__
|
|
|
|
struct intel_crtc;
|
|
struct intel_display;
|
|
|
|
void intel_dpt_configure(struct intel_crtc *crtc);
|
|
void intel_dpt_suspend(struct intel_display *display);
|
|
void intel_dpt_resume(struct intel_display *display);
|
|
|
|
#endif /* __INTEL_DPT_COMMON_H__ */
|