summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_map.h
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2023-02-24 16:15:48 -0800
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-19 18:29:21 -0500
commit3457388fcd145d64e6852ca60084e822bec81e9f (patch)
tree79f52f8eecbaa6ef9458cba674c782c023c2c2be /drivers/gpu/drm/xe/xe_map.h
parent5ec15f83117f2f89af39109c264c1fb0bbf8b5f0 (diff)
downloadlinux-next-3457388fcd145d64e6852ca60084e822bec81e9f.tar.gz
linux-next-3457388fcd145d64e6852ca60084e822bec81e9f.zip
drm/xe: Prefer single underscore for header guards
Keep header guards consistent with regard to ifdef used. Prefer the more commonly used in the driver. $ git grep "ifndef __XE_" -- drivers/gpu/drm/xe | wc -l 8 $ git grep "ifndef _XE_" -- drivers/gpu/drm/xe | wc -l 112 Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_map.h')
-rw-r--r--drivers/gpu/drm/xe/xe_map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/xe/xe_map.h b/drivers/gpu/drm/xe/xe_map.h
index 0bac1f73a80d..032c2e8b5438 100644
--- a/drivers/gpu/drm/xe/xe_map.h
+++ b/drivers/gpu/drm/xe/xe_map.h
@@ -3,8 +3,8 @@
* Copyright © 2022 Intel Corporation
*/
-#ifndef __XE_MAP_H__
-#define __XE_MAP_H__
+#ifndef _XE_MAP_H_
+#define _XE_MAP_H_
#include <linux/iosys-map.h>