summaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorMichal Wajdeczko <michal.wajdeczko@intel.com>2026-01-09 16:12:15 +0100
committerMichal Wajdeczko <michal.wajdeczko@intel.com>2026-01-12 14:38:37 +0100
commite7994954c2bea9e754c5da546846fb1cd79f5151 (patch)
tree429c74cf9c6acc5f94dde65245dfb2c41c0ef0c4 /drivers/gpu
parentbb63e7257e6341aa1e48da07b13d2d00fd899fb3 (diff)
drm/xe/mert: Normalize xe_mert.h include guards
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
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/xe/xe_mert.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xe/xe_mert.h b/drivers/gpu/drm/xe/xe_mert.h
index 2e14c5dec008..0de8243e46bd 100644
--- a/drivers/gpu/drm/xe/xe_mert.h
+++ b/drivers/gpu/drm/xe/xe_mert.h
@@ -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