diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2025-07-11 14:49:12 -0700 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2025-07-14 08:01:19 -0700 |
commit | e08c0fa02e4ea02b4494b7bcb2e9cac99439f725 (patch) | |
tree | 4fa5da973c5ce497e5599b9ae2f644916e026c7d | |
parent | 8f3d1c9fb04e2ae018d06b4cacc49e146120facc (diff) |
drm/xe: Fix missing kernel-doc
Fix warning:
Warning: drivers/gpu/drm/xe/xe_device_types.h:658 struct member 'wa_active' not described in 'xe_device'
Fixes: 661a6950e061 ("drm/xe: Add infrastructure for Device OOB workarounds")
Cc: Matt Atwood <matthew.s.atwood@intel.com>
Reviewed-by: Jonathan Cavitt <joanthan.cavitt@intel.com>
Link: https://lore.kernel.org/r/20250711214911.2009714-2-lucas.demarchi@intel.com
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
-rw-r--r-- | drivers/gpu/drm/xe/xe_device_types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 61d3f473a7a6..1e6ecf1e6979 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -363,6 +363,7 @@ struct xe_device { u8 skip_pcode:1; } info; + /** @wa_active: keep track of active workarounds */ struct { /** @wa_active.oob: bitmap with active OOB workarounds */ unsigned long *oob; |