[U-Boot] [RFC][PATCH 15/36] sc520 - Remove printf calls from cpu_init_f
Graeme Russ
graeme.russ at gmail.com
Mon Jan 3 20:46:35 CET 2011
--
In later patches, cpu_init_f will be called before console has been
initialised and printf will not be legitimately available
---
arch/i386/cpu/sc520/sc520.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/arch/i386/cpu/sc520/sc520.c b/arch/i386/cpu/sc520/sc520.c
index c51f11b..956b561 100644
--- a/arch/i386/cpu/sc520/sc520.c
+++ b/arch/i386/cpu/sc520/sc520.c
@@ -46,11 +46,9 @@ int cpu_init_f(void)
/* set it to 133 MHz and write back */
writeb(0x02, &sc520_mmcr->cpuctl);
gd->cpu_clk = 133000000;
- printf("## CPU Speed set to 133MHz\n");
} else {
/* set it to 100 MHz and write back */
writeb(0x01, &sc520_mmcr->cpuctl);
- printf("## CPU Speed set to 100MHz\n");
gd->cpu_clk = 100000000;
}
--
1.7.1.422.g049e9
More information about the U-Boot
mailing list