summaryrefslogtreecommitdiffstats
path: root/cpukit/include/fdt.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2017-10-18 17:22:40 +1100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-19 07:01:11 +0200
commit42f1b3762acf72032696e0817f81f4cb069a446e (patch)
treed307028f839a77f5a4027592172154614e279e4f /cpukit/include/fdt.h
parentFix some errors in comments (diff)
downloadrtems-42f1b3762acf72032696e0817f81f4cb069a446e.tar.bz2
libfdt: Remove leading underscores from identifiers
In a lot of places libfdt uses a leading _ character to mark an identifier as "internal" (not part of the published libfdt API). This is a bad idea, because identifiers with a leading _ are generally reserved by the C library or system. It's particularly dangerous for libfdt, because it's designed to be able to be integrated into lots of different environments. In some cases the leading _ has no purpose, so we simply drop it. In most cases we move it to the end, as our new convention for marking internal identifiers. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'cpukit/include/fdt.h')
-rw-r--r--cpukit/include/fdt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/fdt.h b/cpukit/include/fdt.h
index 526aedb515..74961f9026 100644
--- a/cpukit/include/fdt.h
+++ b/cpukit/include/fdt.h
@@ -1,5 +1,5 @@
-#ifndef _FDT_H
-#define _FDT_H
+#ifndef FDT_H
+#define FDT_H
/*
* libfdt - Flat Device Tree manipulation
* Copyright (C) 2006 David Gibson, IBM Corporation.
@@ -108,4 +108,4 @@ struct fdt_property {
#define FDT_V16_SIZE FDT_V3_SIZE
#define FDT_V17_SIZE (FDT_V16_SIZE + sizeof(fdt32_t))
-#endif /* _FDT_H */
+#endif /* FDT_H */