diff options
author | Michal Wajdeczko <[email protected]> | 2024-05-21 12:28:27 +0200 |
---|---|---|
committer | Michal Wajdeczko <[email protected]> | 2024-05-22 12:03:55 +0200 |
commit | de1429a99fd37f706e6bdbf5e9ad318e1523442c (patch) | |
tree | 6d65b4a7d9580a4b3f13be8733f2837b32c92c84 | |
parent | 2291c091107d0635f10269098152900c0a12fd00 (diff) |
drm/xe: Fix xe_huc.h
Prefer forward declaration over #include xe_huc_types.h
Signed-off-by: Michal Wajdeczko <[email protected]>
Reviewed-by: Francois Dugast <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/xe/xe_huc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_huc.h b/drivers/gpu/drm/xe/xe_huc.h index 3ab56cc14b00..fa1c45e70443 100644 --- a/drivers/gpu/drm/xe/xe_huc.h +++ b/drivers/gpu/drm/xe/xe_huc.h @@ -6,9 +6,10 @@ #ifndef _XE_HUC_H_ #define _XE_HUC_H_ -#include "xe_huc_types.h" +#include <linux/types.h> struct drm_printer; +struct xe_huc; enum xe_huc_auth_types { XE_HUC_AUTH_VIA_GUC = 0, |