xref: /linux/drivers/gpu/drm/xe/display/xe_tdf.c (revision 4a774b39e68fac7d6c7c9cffeb6a4ea4b6dc8b41)
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright © 2024 Intel Corporation
4  */
5 
6 #include "intel_display_core.h"
7 #include "intel_tdf.h"
8 #include "xe_device.h"
9 
10 void intel_td_flush(struct intel_display *display)
11 {
12 	struct xe_device *xe = to_xe_device(display->drm);
13 
14 	xe_device_td_flush(xe);
15 }
16