Merge branch 'master' of git://git.denx.de/u-boot-spi
[platform/kernel/u-boot.git] / arch / arm / mach-rockchip / rk3399-board-spl.c
index 9b5dc41..0198c6c 100644 (file)
@@ -172,7 +172,7 @@ void board_init_f(ulong dummy)
         * printascii("string");
         */
        debug_uart_init();
-       printascii("U-Boot SPL board init");
+       printascii("U-Boot SPL board init\n");
 #endif
 
        ret = spl_early_init();
@@ -202,13 +202,13 @@ void board_init_f(ulong dummy)
 
        ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
        if (ret) {
-               debug("Pinctrl init failed: %d\n", ret);
+               pr_err("Pinctrl init failed: %d\n", ret);
                return;
        }
 
        ret = uclass_get_device(UCLASS_RAM, 0, &dev);
        if (ret) {
-               debug("DRAM init failed: %d\n", ret);
+               pr_err("DRAM init failed: %d\n", ret);
                return;
        }
 }