diff mbox

[U-Boot,16/38] x86: Make u-boot-x86.h a private header

Message ID 20170517142311.29484-17-sjg@chromium.org
State Accepted
Commit 6862b50f6eebf4379e6d3b74a64378988e8e2961
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass May 17, 2017, 2:22 p.m. UTC
Rather than including this arch-specific header file in common.h, include
it from within x86's u-boot.h header.

Also drop the comment about something to be fixed. It is not clear what
needs fixing.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 arch/x86/include/asm/u-boot.h | 1 +
 include/common.h              | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

Comments

Tom Rini June 6, 2017, 12:18 a.m. UTC | #1
On Wed, May 17, 2017 at 08:22:49AM -0600, Simon Glass wrote:

> Rather than including this arch-specific header file in common.h, include
> it from within x86's u-boot.h header.
> 
> Also drop the comment about something to be fixed. It is not clear what
> needs fixing.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/arch/x86/include/asm/u-boot.h b/arch/x86/include/asm/u-boot.h
index 623771a39a..4c4527eb38 100644
--- a/arch/x86/include/asm/u-boot.h
+++ b/arch/x86/include/asm/u-boot.h
@@ -22,6 +22,7 @@ 
 
 /* Use the generic board which requires a unified bd_info */
 #include <asm-generic/u-boot.h>
+#include <asm/u-boot-x86.h>
 
 /* For image.h:image_check_target_arch() */
 #define IH_ARCH_DEFAULT IH_ARCH_I386
diff --git a/include/common.h b/include/common.h
index ffaed49bde..229ca4c397 100644
--- a/include/common.h
+++ b/include/common.h
@@ -430,8 +430,8 @@  static inline int setenv_addr(const char *varname, const void *addr)
 # include <asm/setup.h>
 # include <asm/u-boot-arm.h>	/* ARM version to be fixed! */
 #endif /* CONFIG_ARM */
-#ifdef CONFIG_X86		/* x86 version to be fixed! */
-# include <asm/u-boot-x86.h>
+#ifdef CONFIG_X86
+# include <asm/u-boot.h>
 #endif /* CONFIG_X86 */
 #ifdef CONFIG_SANDBOX
 # include <asm/u-boot.h>