mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 16:23:59 -04:00
Going forward, struct intel_display is the main display device data pointer. Convert as much as possible of intel_display_wa.[ch] to struct intel_display. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://lore.kernel.org/r/821937f9fcdcb7d5516be0c48c2cee009936ecb8.1742906146.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
19 lines
364 B
C
19 lines
364 B
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#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);
|
|
}
|