Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/xe: Drop unnecessary include from xe_tile.h

We don't need to include xe_device_types.h there.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
Link: https://patch.msgid.link/20260203211240.745-5-michal.wajdeczko@intel.com

+4 -4
+2 -2
drivers/gpu/drm/xe/xe_tile.h
··· 6 6 #ifndef _XE_TILE_H_ 7 7 #define _XE_TILE_H_ 8 8 9 - #include "xe_device_types.h" 9 + #include "xe_tile_types.h" 10 10 11 + struct xe_device; 11 12 struct xe_pagemap; 12 - struct xe_tile; 13 13 14 14 int xe_tile_init_early(struct xe_tile *tile, struct xe_device *xe, u8 id); 15 15 int xe_tile_init_noalloc(struct xe_tile *tile);
+1 -1
drivers/gpu/drm/xe/xe_tile_sysfs.c
··· 7 7 #include <linux/sysfs.h> 8 8 #include <drm/drm_managed.h> 9 9 10 + #include "xe_device_types.h" 10 11 #include "xe_pm.h" 11 - #include "xe_tile.h" 12 12 #include "xe_tile_sysfs.h" 13 13 #include "xe_vram_freq.h" 14 14
+1 -1
drivers/gpu/drm/xe/xe_vram_freq.c
··· 5 5 #include <linux/sysfs.h> 6 6 #include <drm/drm_managed.h> 7 7 8 + #include "xe_device_types.h" 8 9 #include "xe_pcode.h" 9 10 #include "xe_pcode_api.h" 10 - #include "xe_tile.h" 11 11 #include "xe_tile_sysfs.h" 12 12 #include "xe_vram_freq.h" 13 13