diff mbox series

[U-Boot] nds32: bootm: Fix warning of struct tag_serialnr declared

Message ID 1505184577-32364-1-git-send-email-uboot@andestech.com
State Accepted
Commit 19fc21fb4af34dea1150e1cfbd64f5ccfc88a2b5
Delegated to: Andes
Headers show
Series [U-Boot] nds32: bootm: Fix warning of struct tag_serialnr declared | expand

Commit Message

Andes Sept. 12, 2017, 2:49 a.m. UTC
From: rick <rick@andestech.com>

move #include <asm/setup.h> from bootm.c to bootm.h

Signed-off-by: rick <rick@andestech.com>
---
 arch/nds32/include/asm/bootm.h |    2 ++
 arch/nds32/lib/bootm.c         |    1 -
 2 files changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/arch/nds32/include/asm/bootm.h b/arch/nds32/include/asm/bootm.h
index 6b10c07..2e2fe01 100644
--- a/arch/nds32/include/asm/bootm.h
+++ b/arch/nds32/include/asm/bootm.h
@@ -11,6 +11,8 @@ 
 #ifndef NDS32_BOOTM_H
 #define NDS32_BOOTM_H
 
+#include <asm/setup.h>
+
 extern void udc_disconnect(void);
 
 #if defined(CONFIG_SETUP_MEMORY_TAGS) || \
diff --git a/arch/nds32/lib/bootm.c b/arch/nds32/lib/bootm.c
index e834329..42b15df 100644
--- a/arch/nds32/lib/bootm.c
+++ b/arch/nds32/lib/bootm.c
@@ -12,7 +12,6 @@ 
 #include <u-boot/zlib.h>
 #include <asm/byteorder.h>
 #include <asm/bootm.h>
-#include <asm/setup.h>
 
 DECLARE_GLOBAL_DATA_PTR;