summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Dorta <diego.dorta@nxp.com>2017-09-27 16:12:37 (GMT)
committerStefano Babic <sbabic@denx.de>2017-10-12 15:31:16 (GMT)
commitc49fa34e5bbc6943d385e74d4fb9ea7e5afecf10 (patch)
treea2dd1deee9f7f9cb7af224e442dc0e1dadc813ea
parentd26e2c8453cd38a0cf1a16138713af86a4c953b6 (diff)
downloadu-boot-c49fa34e5bbc6943d385e74d4fb9ea7e5afecf10.tar.xz
mx6: soc: Include <asm/bootm.h> header file
When compiling with W=1 the following warning is observed: arch/arm/mach-imx/mx6/soc.c:213:12: warning: no previous prototype for ‘get_board_rev’ [-Wmissing-prototypes] u32 __weak get_board_rev(void) Fix the build warning by including <asm/bootm.h>. Signed-off-by: Diego Dorta <diego.dorta@nxp.com>
-rw-r--r--arch/arm/mach-imx/mx6/soc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mx6/soc.c b/arch/arm/mach-imx/mx6/soc.c
index b724668..ad72c12 100644
--- a/arch/arm/mach-imx/mx6/soc.c
+++ b/arch/arm/mach-imx/mx6/soc.c
@@ -13,6 +13,7 @@
#include <asm/arch/imx-regs.h>
#include <asm/arch/clock.h>
#include <asm/arch/sys_proto.h>
+#include <asm/bootm.h>
#include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/dma.h>
#include <asm/mach-imx/hab.h>