xref: /linux/drivers/gpu/drm/i915/display/intel_dpt.h (revision aec2f682d47c54ef434b2d440992626d80b1ebdc)
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