From 42f1b3762acf72032696e0817f81f4cb069a446e Mon Sep 17 00:00:00 2001 From: David Gibson Date: Wed, 18 Oct 2017 17:22:40 +1100 Subject: 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 --- cpukit/include/fdt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/include/fdt.h') 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 */ -- cgit v1.2.3