2023-09-06 17:10:10 -07:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright © 2023 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INTEL_DISPLAY_WA_H__
|
|
|
|
#define __INTEL_DISPLAY_WA_H__
|
|
|
|
|
2024-07-03 13:43:39 +01:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2025-03-25 14:36:37 +02:00
|
|
|
struct intel_display;
|
2023-09-06 17:10:10 -07:00
|
|
|
|
2025-03-25 14:36:37 +02:00
|
|
|
void intel_display_wa_apply(struct intel_display *display);
|
2023-09-06 17:10:10 -07:00
|
|
|
|
2024-07-03 13:43:39 +01:00
|
|
|
#ifdef I915
|
2025-03-25 14:36:37 +02:00
|
|
|
static inline bool intel_display_needs_wa_16023588340(struct intel_display *display)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2024-07-03 13:43:39 +01:00
|
|
|
#else
|
2025-03-25 14:36:37 +02:00
|
|
|
bool intel_display_needs_wa_16023588340(struct intel_display *display);
|
2024-07-03 13:43:39 +01:00
|
|
|
#endif
|
|
|
|
|
2023-09-06 17:10:10 -07:00
|
|
|
#endif
|