Commit a92c68eb authored by Michal Wajdeczko's avatar Michal Wajdeczko
Browse files

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: default avatarMichal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Reviewed-by: default avatarLukasz Laguna <lukasz.laguna@intel.com>
Link: https://patch.msgid.link/20260109151219.26206-3-michal.wajdeczko@intel.com
parent e7994954
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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;
};