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

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: 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-2-michal.wajdeczko@intel.com
parent bb63e725
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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