diff mbox series

[U-Boot,4/7] rockchip: spi-boot-order: Trival fix to newline missing

Message ID 20190917061042.32053-5-jagan@amarulasolutions.com
State Accepted
Commit 891d4d1fcaf386d6273b61a1d07bd52162e22e38
Delegated to: Kever Yang
Headers show
Series rk3288: tinker/vyasa: Fixes for TPL/SPL boot | expand

Commit Message

Jagan Teki Sept. 17, 2019, 6:10 a.m. UTC
newline \n was missed in fdt_path_offset, error loop.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
 arch/arm/mach-rockchip/spl-boot-order.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Kever Yang Sept. 18, 2019, 5:01 a.m. UTC | #1
On 2019/9/17 下午2:10, Jagan Teki wrote:
> newline \n was missed in fdt_path_offset, error loop.
>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>

Reviewed-by: Kever Yang<kever.yang@rock-chips.com>

Thanks,
- Kever
> ---
>   arch/arm/mach-rockchip/spl-boot-order.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-rockchip/spl-boot-order.c b/arch/arm/mach-rockchip/spl-boot-order.c
> index c19c285c07..fa8e096426 100644
> --- a/arch/arm/mach-rockchip/spl-boot-order.c
> +++ b/arch/arm/mach-rockchip/spl-boot-order.c
> @@ -134,7 +134,7 @@ void board_boot_order(u32 *spl_boot_list)
>   		/* Try to resolve the config item (or alias) as a path */
>   		node = fdt_path_offset(blob, conf);
>   		if (node < 0) {
> -			debug("%s: could not find %s in FDT", __func__, conf);
> +			debug("%s: could not find %s in FDT\n", __func__, conf);
>   			continue;
>   		}
>
diff mbox series

Patch

diff --git a/arch/arm/mach-rockchip/spl-boot-order.c b/arch/arm/mach-rockchip/spl-boot-order.c
index c19c285c07..fa8e096426 100644
--- a/arch/arm/mach-rockchip/spl-boot-order.c
+++ b/arch/arm/mach-rockchip/spl-boot-order.c
@@ -134,7 +134,7 @@  void board_boot_order(u32 *spl_boot_list)
 		/* Try to resolve the config item (or alias) as a path */
 		node = fdt_path_offset(blob, conf);
 		if (node < 0) {
-			debug("%s: could not find %s in FDT", __func__, conf);
+			debug("%s: could not find %s in FDT\n", __func__, conf);
 			continue;
 		}