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 <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
This commit is contained in:
Michal Wajdeczko 2026-01-09 16:12:16 +01:00
parent e7994954c2
commit a92c68eb1e

View File

@ -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;
};