]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe/mert: Fix kernel-doc for struct xe_mert
authorMichal Wajdeczko <michal.wajdeczko@intel.com>
Fri, 9 Jan 2026 15:12:16 +0000 (16:12 +0100)
committerMichal Wajdeczko <michal.wajdeczko@intel.com>
Mon, 12 Jan 2026 13:38:40 +0000 (14:38 +0100)
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 <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
Link: https://patch.msgid.link/20260109151219.26206-3-michal.wajdeczko@intel.com
drivers/gpu/drm/xe/xe_mert.h

index 0de8243e46bdee30326ee01805e8de2df87dba5d..0e27f9fa24bb4c427728103d2b732b0bc17aeed0 100644 (file)
 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;
 };