]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/xe: Prefer single underscore for header guards
authorLucas De Marchi <lucas.demarchi@intel.com>
Sat, 25 Feb 2023 00:15:48 +0000 (16:15 -0800)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Tue, 19 Dec 2023 23:29:21 +0000 (18:29 -0500)
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>
drivers/gpu/drm/xe/tests/xe_bo_test.h
drivers/gpu/drm/xe/tests/xe_dma_buf_test.h
drivers/gpu/drm/xe/tests/xe_migrate_test.h
drivers/gpu/drm/xe/tests/xe_test.h
drivers/gpu/drm/xe/xe_gt_topology.h
drivers/gpu/drm/xe/xe_map.h
drivers/gpu/drm/xe/xe_migrate.h
drivers/gpu/drm/xe/xe_res_cursor.h

index d751a618c0c8f100782c4c523aaa09a6c17f0563..0113ab45066a4851d2235a420968c170dc16c819 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright © 2023 Intel Corporation
  */
 
-#ifndef __XE_BO_TEST_H__
-#define __XE_BO_TEST_H__
+#ifndef _XE_BO_TEST_H_
+#define _XE_BO_TEST_H_
 
 struct kunit;
 
index 4e9a8bef575188abb73e7b68a2b57850947fce79..e6b464ddd52608d982632a281af8fef59cb18f00 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright © 2023 Intel Corporation
  */
 
-#ifndef __XE_DMA_BUF_TEST_H__
-#define __XE_DMA_BUF_TEST_H__
+#ifndef _XE_DMA_BUF_TEST_H_
+#define _XE_DMA_BUF_TEST_H_
 
 struct kunit;
 
index db1f8ef035bbac298cf2e67d499dec0cbe00e446..7c645c66824f894bc6911f7707fb1fa5d3c44f98 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright © 2023 Intel Corporation
  */
 
-#ifndef __XE_MIGRATE_TEST_H__
-#define __XE_MIGRATE_TEST_H__
+#ifndef _XE_MIGRATE_TEST_H_
+#define _XE_MIGRATE_TEST_H_
 
 struct kunit;
 
index 1ec502b5acf38df3a311e17a9a164dd07f94d464..00c8a3f9af8146ecb6d9938587d09c4d7be879f6 100644 (file)
@@ -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>
 
index 7a0abc64084f25d7a298ef5a88d272fb2b87116f..b2540dc266f217e2311e01d668020630e510ebe3 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright © 2022 Intel Corporation
  */
 
-#ifndef __XE_GT_TOPOLOGY_H__
-#define __XE_GT_TOPOLOGY_H__
+#ifndef _XE_GT_TOPOLOGY_H_
+#define _XE_GT_TOPOLOGY_H_
 
 #include "xe_gt_types.h"
 
@@ -17,4 +17,4 @@ void xe_gt_topology_dump(struct xe_gt *gt, struct drm_printer *p);
 unsigned int
 xe_dss_mask_group_ffs(xe_dss_mask_t mask, int groupsize, int groupnum);
 
-#endif /* __XE_GT_TOPOLOGY_H__ */
+#endif /* _XE_GT_TOPOLOGY_H_ */
index 0bac1f73a80d6945e8442f2567267c17615b9fc0..032c2e8b54386611346d6e4e99163ab35baf6698 100644 (file)
@@ -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>
 
index b2d55283252f0096a0211bd25f12d1e2a20dfd11..a569851db6f7f2e1edc799ca2d4981b56445ff67 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright © 2020 Intel Corporation
  */
 
-#ifndef __XE_MIGRATE__
-#define __XE_MIGRATE__
+#ifndef _XE_MIGRATE_
+#define _XE_MIGRATE_
 
 #include <drm/drm_mm.h>
 
index 365c8ad7aeb8edefd13279ad867a80d6244cd27c..4e99fae26b4c06144d4447357733ee2009b03ca3 100644 (file)
@@ -21,8 +21,8 @@
  * OTHER DEALINGS IN THE SOFTWARE.
  */
 
-#ifndef __XE_RES_CURSOR_H__
-#define __XE_RES_CURSOR_H__
+#ifndef _XE_RES_CURSOR_H_
+#define _XE_RES_CURSOR_H_
 
 #include <linux/scatterlist.h>