[U-Boot] [PATCH] powerpc: P1010RDB: Rework local command to not be included in SPL

Tom Rini trini at konsulko.com
Wed Jan 3 14:13:04 UTC 2018


Add a CONFIG_SPL_BUILD guard around the code for the "mux" command so it
is not included in SPL.

Cc: Qiang Zhao <qiang.zhao at nxp.com>
Cc: York Sun <york.sun at nxp.com>
Signed-off-by: Tom Rini <trini at konsulko.com>
---
 board/freescale/p1010rdb/p1010rdb.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c
index aa04e993c460..a5d85c228279 100644
--- a/board/freescale/p1010rdb/p1010rdb.c
+++ b/board/freescale/p1010rdb/p1010rdb.c
@@ -550,6 +550,7 @@ int misc_init_r(void)
 	return 0;
 }
 
+#ifndef CONFIG_SPL_BUILD
 static int pin_mux_cmd(cmd_tbl_t *cmdtp, int flag, int argc,
 				char * const argv[])
 {
@@ -569,3 +570,4 @@ U_BOOT_CMD(
 	"configure multiplexing pin for IFC/SDHC bus in runtime",
 	"bus_type (e.g. mux sdhc)"
 );
+#endif
-- 
2.7.4



More information about the U-Boot mailing list