]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe/mert: Normalize xe_mert.h include guards
authorMichal Wajdeczko <michal.wajdeczko@intel.com>
Fri, 9 Jan 2026 15:12:15 +0000 (16:12 +0100)
committerMichal Wajdeczko <michal.wajdeczko@intel.com>
Mon, 12 Jan 2026 13:38:37 +0000 (14:38 +0100)
Most of our header files are using include guard names with single
underscore and we don't use trailing comments on final #endif.

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-2-michal.wajdeczko@intel.com
drivers/gpu/drm/xe/xe_mert.h

index 2e14c5dec0083f72e64cd7878df3fd73bbf6dcce..0de8243e46bdee30326ee01805e8de2df87dba5d 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright(c) 2025, Intel Corporation. All rights reserved.
  */
 
-#ifndef __XE_MERT_H__
-#define __XE_MERT_H__
+#ifndef _XE_MERT_H_
+#define _XE_MERT_H_
 
 #include <linux/completion.h>
 #include <linux/spinlock.h>
@@ -29,4 +29,4 @@ void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl);
 static inline void xe_mert_irq_handler(struct xe_device *xe, u32 master_ctl) { }
 #endif
 
-#endif /* __XE_MERT_H__ */
+#endif