summaryrefslogtreecommitdiff
path: root/dtc.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2017-10-18 16:59:43 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2017-10-26 09:25:14 +0200
commit3b62fdaebfe577566ff2387eb1c55344a7f55982 (patch)
tree8b7ff2c661b7b8de1735072afa1ff8deaccedc46 /dtc.h
parent2d45d1c5c65e9b3cd020fac624ed9bf6c2855a91 (diff)
downloaddevice-tree-compiler-3b62fdaebfe577566ff2387eb1c55344a7f55982.tar.gz
Remove leading underscores from identifiers
In a number of places, dtc and associated tools and test code use leading _ characters on identifiers to flag them as "internal", an idiom taken from the Linux kernel. This is a bad idea in a userspace program, because identifiers with a leading _ are reserved for the C library / system. In some cases, the extra _ served no real purpose, so simply drop it. In others move to the end of the identifier, which is a convention we're free to use for our own purposes. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'dtc.h')
-rw-r--r--dtc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dtc.h b/dtc.h
index 35cf926..760f9e3 100644
--- a/dtc.h
+++ b/dtc.h
@@ -1,5 +1,5 @@
-#ifndef _DTC_H
-#define _DTC_H
+#ifndef DTC_H
+#define DTC_H
/*
* (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
@@ -289,4 +289,4 @@ struct dt_info *dt_from_source(const char *f);
struct dt_info *dt_from_fs(const char *dirname);
-#endif /* _DTC_H */
+#endif /* DTC_H */