summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/tests/xe_test.h
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2023-02-25 03:15:48 +0300
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-20 02:29:21 +0300
commit3457388fcd145d64e6852ca60084e822bec81e9f (patch)
tree79f52f8eecbaa6ef9458cba674c782c023c2c2be /drivers/gpu/drm/xe/tests/xe_test.h
parent5ec15f83117f2f89af39109c264c1fb0bbf8b5f0 (diff)
downloadlinux-3457388fcd145d64e6852ca60084e822bec81e9f.tar.xz
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/tests/xe_test.h')
-rw-r--r--drivers/gpu/drm/xe/tests/xe_test.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/xe/tests/xe_test.h b/drivers/gpu/drm/xe/tests/xe_test.h
index 1ec502b5acf3..00c8a3f9af81 100644
--- a/drivers/gpu/drm/xe/tests/xe_test.h
+++ b/drivers/gpu/drm/xe/tests/xe_test.h
@@ -3,8 +3,8 @@
* Copyright © 2022 Intel Corporation
*/
-#ifndef __XE_TEST_H__
-#define __XE_TEST_H__
+#ifndef _XE_TEST_H_
+#define _XE_TEST_H_
#include <linux/types.h>