From: Wolfgang Denk Date: Wed, 28 Jan 2009 22:06:42 +0000 (+0100) Subject: 85xx: Fix compile breakage with sbc8540 and sbc8560 X-Git-Tag: v2009.03-rc1~144 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2;p=platform%2Fkernel%2Fu-boot.git 85xx: Fix compile breakage with sbc8540 and sbc8560 This fixes an error which raises just a warning: sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast Signed-off-by: Wolfgang Denk --- diff --git a/board/sbc8560/sbc8560.c b/board/sbc8560/sbc8560.c index 3d4008b..7f032c8 100644 --- a/board/sbc8560/sbc8560.c +++ b/board/sbc8560/sbc8560.c @@ -247,7 +247,7 @@ int checkboard (void) #else printf ("Board: Wind River SBC8540 Board\n"); #endif - printf ("\tCPU: %s MHz\n", strmhz(buf, sysinfo.freqProcessor)); + printf ("\tCPU: %s MHz\n", strmhz(buf, sysinfo.freqProcessor[0])); printf ("\tCCB: %s MHz\n", strmhz(buf, sysinfo.freqSystemBus)); printf ("\tDDR: %s MHz\n", strmhz(buf, sysinfo.freqSystemBus/2)); if((CONFIG_SYS_LBC_LCRR & 0x0f) == 2 || (CONFIG_SYS_LBC_LCRR & 0x0f) == 4 \