xref: /linux/drivers/gpu/drm/i915/display/intel_display_wa.h (revision e78f70bad29c5ae1e1076698b690b15794e9b81e) !
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2023 Intel Corporation
4  */
5 
6 #ifndef __INTEL_DISPLAY_WA_H__
7 #define __INTEL_DISPLAY_WA_H__
8 
9 #include <linux/types.h>
10 
11 struct intel_display;
12 
13 void intel_display_wa_apply(struct intel_display *display);
14 
15 #ifdef I915
16 static inline bool intel_display_needs_wa_16023588340(struct intel_display *display)
17 {
18 	return false;
19 }
20 #else
21 bool intel_display_needs_wa_16023588340(struct intel_display *display);
22 #endif
23 
24 #endif
25