All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH u-boot-v2016.07] libfdt: Make it compatible with newer dtc
@ 2020-05-12 21:27 Patrick Williams
  2020-05-12 21:31 ` Patrick Williams
  0 siblings, 1 reply; 4+ messages in thread
From: Patrick Williams @ 2020-05-12 21:27 UTC (permalink / raw)
  To: openbmc
  Cc: Joel Stanley, Andrew Jeffery,
	Alejandro Enedino Hernandez Samaniego, Patrick Williams

From: Alejandro Enedino Hernandez Samaniego <aehs29@gmail.com>

DTC does not use an underscore for the LIBFDT_H and
LIBFDT_ENV_H variables, this causes an error since
u-boot does.

Remove the underscore from these variables to allow u-boot
to compile along with dtc.

Signed-off-by: Alejandro Enedino Hernandez Samaniego <aehs29@gmail.com>
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
---
 include/libfdt.h     | 4 ++--
 include/libfdt_env.h | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/libfdt.h b/include/libfdt.h
index 74b1d149c2..a8a6ffb445 100644
--- a/include/libfdt.h
+++ b/include/libfdt.h
@@ -1,5 +1,5 @@
-#ifndef _LIBFDT_H
-#define _LIBFDT_H
+#ifndef LIBFDT_H
+#define LIBFDT_H
 /*
  * libfdt - Flat Device Tree manipulation
  * Copyright (C) 2006 David Gibson, IBM Corporation.
diff --git a/include/libfdt_env.h b/include/libfdt_env.h
index 273b5d30f8..b45c9624d8 100644
--- a/include/libfdt_env.h
+++ b/include/libfdt_env.h
@@ -6,8 +6,8 @@
  * SPDX-License-Identifier:	LGPL-2.1+
  */
 
-#ifndef _LIBFDT_ENV_H
-#define _LIBFDT_ENV_H
+#ifndef LIBFDT_ENV_H
+#define LIBFDT_ENV_H
 
 #include "compiler.h"
 #include "linux/types.h"
-- 
2.26.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-28 12:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-12 21:27 [PATCH u-boot-v2016.07] libfdt: Make it compatible with newer dtc Patrick Williams
2020-05-12 21:31 ` Patrick Williams
2020-05-18 19:41   ` Patrick Williams
2020-05-28 12:28     ` Brad Bishop

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.