Files
linux/drivers/gpu/drm/xe/display/xe_tdf.c
Jani Nikula 7bcb697c94 drm/i915/tdf: convert intel_tdf.[ch] to struct intel_display
Going forward, struct intel_display is the main display device data
pointer. Convert the intel_tdf.[ch] glue to struct intel_display.

Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/26d976f23295713f9a7cda20e32b7ef5aad3dd9e.1740502116.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2025-02-27 12:20:07 +02:00

16 lines
292 B
C

// SPDX-License-Identifier: MIT
/*
* Copyright © 2024 Intel Corporation
*/
#include "xe_device.h"
#include "intel_display_types.h"
#include "intel_tdf.h"
void intel_td_flush(struct intel_display *display)
{
struct xe_device *xe = to_xe_device(display->drm);
xe_device_td_flush(xe);
}