mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-29 15:14:25 +00:00

Make xe->display pointer opaque to most of core xe driver. A few places now need explicit include of intel_display_core.h. With this dependency broken, changes in display should cause radically less recompilation of xe. Acked-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> Link: https://lore.kernel.org/r/a12918f4d404e2d6d4e963126ce96df01d5064f3.1747907216.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
19 lines
395 B
C
19 lines
395 B
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#include "intel_display_core.h"
|
|
#include "intel_display_wa.h"
|
|
#include "xe_device.h"
|
|
#include "xe_wa.h"
|
|
|
|
#include <generated/xe_wa_oob.h>
|
|
|
|
bool intel_display_needs_wa_16023588340(struct intel_display *display)
|
|
{
|
|
struct xe_device *xe = to_xe_device(display->drm);
|
|
|
|
return XE_WA(xe_root_mmio_gt(xe), 16023588340);
|
|
}
|