diff options
author | Michal Wajdeczko <michal.wajdeczko@intel.com> | 2024-05-21 13:28:27 +0300 |
---|---|---|
committer | Michal Wajdeczko <michal.wajdeczko@intel.com> | 2024-05-22 13:03:55 +0300 |
commit | de1429a99fd37f706e6bdbf5e9ad318e1523442c (patch) | |
tree | 6d65b4a7d9580a4b3f13be8733f2837b32c92c84 /drivers/gpu/drm/xe/xe_huc.h | |
parent | 2291c091107d0635f10269098152900c0a12fd00 (diff) | |
download | linux-de1429a99fd37f706e6bdbf5e9ad318e1523442c.tar.xz |
drm/xe: Fix xe_huc.h
Prefer forward declaration over #include xe_huc_types.h
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240521102828.668-4-michal.wajdeczko@intel.com
Diffstat (limited to 'drivers/gpu/drm/xe/xe_huc.h')
-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, |