From a92c68eb1e19de9ea8de6c7d3bcfff6c3fcb3c10 Mon Sep 17 00:00:00 2001 From: Michal Wajdeczko Date: Fri, 9 Jan 2026 16:12:16 +0100 Subject: [PATCH] drm/xe/mert: Fix kernel-doc for struct xe_mert Add simple top level kernel-doc for the struct itself to allow the script recognize that and fix tag of the one member. Signed-off-by: Michal Wajdeczko Cc: Lukasz Laguna Reviewed-by: Lukasz Laguna Link: https://patch.msgid.link/20260109151219.26206-3-michal.wajdeczko@intel.com --- drivers/gpu/drm/xe/xe_mert.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h index 0de8243e46bd..0e27f9fa24bb 100644 --- a/drivers/gpu/drm/xe/xe_mert.h +++ b/drivers/gpu/drm/xe/xe_mert.h @@ -13,12 +13,15 @@ struct xe_device; struct xe_tile; +/** + * struct xe_mert - MERT related data + */ struct xe_mert { /** @lock: protects the TLB invalidation status */ spinlock_t lock; /** @tlb_inv_triggered: indicates if TLB invalidation was triggered */ bool tlb_inv_triggered; - /** @mert.tlb_inv_done: completion of TLB invalidation */ + /** @tlb_inv_done: completion of TLB invalidation */ struct completion tlb_inv_done; }; -- 2.47.3