Add the required '@' prefix to member documentation tags that were
missing it. Without the prefix, kernel-doc does not associate the
comment with the struct member.
- xe_guc_ct_types.h: snapshot_ct -> @snapshot_ct,
snapshot_log -> @snapshot_log
- xe_pagefault_types.h: consumer.reserved -> @consumer.reserved
- xe_pt_types.h: addr -> @addr
Assisted-by: GitHub Copilot:claude-sonnet-4.6
Reviewed-by: Brian Nguyen <brian3.nguyen@intel.com>
Link: https://patch.msgid.link/20260414225457.3687449-3-shuicheng.lin@intel.com
Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
bool reported;
/** @worker: worker thread to get out of interrupt context before dumping */
struct work_struct worker;
- /** snapshot_ct: copy of CT state and CTB content at point of error */
+ /** @snapshot_ct: copy of CT state and CTB content at point of error */
struct xe_guc_ct_snapshot *snapshot_ct;
- /** snapshot_log: copy of GuC log at point of error */
+ /** @snapshot_log: copy of GuC log at point of error */
struct xe_guc_log_snapshot *snapshot_log;
};
u8 engine_class;
/** @consumer.engine_instance: engine instance */
u8 engine_instance;
- /** consumer.reserved: reserved bits for future expansion */
+ /** @consumer.reserved: reserved bits for future expansion */
u64 reserved;
} consumer;
/**
bool rebind;
bool is_compact;
#if IS_ENABLED(CONFIG_DRM_XE_DEBUG_VM)
- /** addr: Virtual address start address of the PT. */
+ /** @addr: Virtual address start address of the PT. */
u64 addr;
#endif
};