diff mbox series

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

Message ID 1514988784-22715-1-git-send-email-trini@konsulko.com
State Accepted
Commit 3a72a0efccfcddee667f006af41aac7249f4e362
Delegated to: York Sun
Headers show
Series [U-Boot] powerpc: P1010RDB: Rework local command to not be included in SPL | expand

Commit Message

Tom Rini Jan. 3, 2018, 2:13 p.m. UTC
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@nxp.com>
Cc: York Sun <york.sun@nxp.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 board/freescale/p1010rdb/p1010rdb.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

York Sun Jan. 4, 2018, 6:34 p.m. UTC | #1
On 01/03/2018 06:13 AM, Tom Rini wrote:
> 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@nxp.com>
> Cc: York Sun <york.sun@nxp.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---

Reviewed-by: York Sun <york.sun@nxp.com>
Qiang Zhao Jan. 5, 2018, 1:50 a.m. UTC | #2
On 01/03/2018 06:13 AM, Tom Rini wrote:

> -----Original Message-----
> From: Tom Rini [mailto:trini@konsulko.com]
> Sent: Wednesday, January 03, 2018 10:13 PM
> To: u-boot@lists.denx.de
> Cc: Qiang Zhao <qiang.zhao@nxp.com>; York Sun <york.sun@nxp.com>
> Subject: [PATCH] powerpc: P1010RDB: Rework local command to not be
> included in SPL
> 
> 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@nxp.com>
> Cc: York Sun <york.sun@nxp.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---

Reviewed-by: Qiang Zhao <qiang.zhao@nxp.com>
York Sun Jan. 19, 2018, 12:52 a.m. UTC | #3
On 01/03/2018 06:13 AM, Tom Rini wrote:
> 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@nxp.com>
> Cc: York Sun <york.sun@nxp.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---

Applied to fsl-qoriq master. Thanks.

York
diff mbox series

Patch

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