]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
rockchip: arm64: rk3399: remove unconditional debug message
authorPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>
Fri, 24 Mar 2017 18:10:52 +0000 (19:10 +0100)
committerSimon Glass <sjg@chromium.org>
Wed, 5 Apr 2017 02:01:57 +0000 (20:01 -0600)
An earlier upstream change contained an unconditional debug message
which would show up as a message similar to the following in the
U-Boot startup (after the ATF and before the U-Boot banner):
      time 159f019, 0

This commit removes this message (instead of making if conditional on
being a debug-build), as it doesn't pertain to any initialisation done
in this file.

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/arm/mach-rockchip/rk3399/rk3399.c

index cbfd3fa09abf8f50789ff23b1668d20580398ab2..8bb950ebd1145c8da3a63f3303b8db662c19e180 100644 (file)
@@ -40,6 +40,5 @@ int arch_cpu_init(void)
        /* Emmc clock generator: disable the clock multipilier */
        rk_clrreg(GRF_EMMCCORE_CON11, 0x0ff);
 
-       printf("time %x, %x\n", readl(0xff8680a8), readl(0xff8680ac));
        return 0;
 }