xref: /linux/drivers/gpu/drm/i915/display/intel_dpt.h (revision 53597deca0e38c30e6cd4ba2114fa42d2bcd85bb)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2023 Intel Corporation
4  */
5 
6 #ifndef __INTEL_DPT_COMMON_H__
7 #define __INTEL_DPT_COMMON_H__
8 
9 struct intel_crtc;
10 struct intel_display;
11 
12 void intel_dpt_configure(struct intel_crtc *crtc);
13 void intel_dpt_suspend(struct intel_display *display);
14 void intel_dpt_resume(struct intel_display *display);
15 
16 #endif /* __INTEL_DPT_COMMON_H__ */
17