diff options
| author | Jani Nikula <jani.nikula@intel.com> | 2026-01-07 17:53:57 +0200 |
|---|---|---|
| committer | Jani Nikula <jani.nikula@intel.com> | 2026-01-09 16:42:38 +0200 |
| commit | 4cdcfa64b6032ec68cdaa6c424b3b293cf7ff45c (patch) | |
| tree | e534bf99a5b4789dafd634a20cd0b5e18e6acfbb | |
| parent | 2e08feebe0353320651013c5bdab58c2a19a716b (diff) | |
drm/xe/guc: fix struct guc_lfd_file_header kernel-doc
Fix kernel-doc warnings on struct guc_lfd_file_header:
Warning: ../drivers/gpu/drm/xe/abi/guc_lfd_abi.h:168 expecting prototype
for struct guc_logfile_header. Prototype was for struct
guc_lfd_file_header instead
Fixes: 7eeb0e5408bd ("drm/xe/guc: Add LFD related abi definitions")
Cc: Zhanjun Dong <zhanjun.dong@intel.com>
Cc: Julia Filipchuk <julia.filipchuk@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Zhanjun Dong <zhanjun.dong@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Link: https://patch.msgid.link/20260107155401.2379127-1-jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
| -rw-r--r-- | drivers/gpu/drm/xe/abi/guc_lfd_abi.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xe/abi/guc_lfd_abi.h b/drivers/gpu/drm/xe/abi/guc_lfd_abi.h index b6ed20d5b508..5c48459f365f 100644 --- a/drivers/gpu/drm/xe/abi/guc_lfd_abi.h +++ b/drivers/gpu/drm/xe/abi/guc_lfd_abi.h @@ -148,7 +148,7 @@ struct guc_lfd_data_os_info { } __packed; /** - * struct guc_logfile_header - Header of GuC Log Streaming-LFD-File Format. + * struct guc_lfd_file_header - Header of GuC Log Streaming-LFD-File Format. * This structure encapsulates the layout of the guc-log-file format */ struct guc_lfd_file_header { @@ -163,8 +163,7 @@ struct guc_lfd_file_header { #define GUC_LFD_FILE_HEADER_VERSION_MASK_MAJOR GENMASK(31, 16) #define GUC_LFD_FILE_HEADER_VERSION_MASK_MINOR GENMASK(15, 0) - /** @stream: A stream of one or more guc_lfd_data LFD blocks - */ + /** @stream: A stream of one or more guc_lfd_data LFD blocks */ u32 stream[]; } __packed; |
