diff options
author | Wolfgang Denk <wd@denx.de> | 2008-10-19 02:35:49 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-21 11:25:38 +0200 |
commit | 08ef89ecd174969b3544f3f0c7cd1de3c57f737b (patch) | |
tree | 3c4f9b6df2d712f18b25733a4648a14eea291bfe /board/mpl | |
parent | d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9 (diff) | |
download | u-boot-imx-08ef89ecd174969b3544f3f0c7cd1de3c57f737b.zip u-boot-imx-08ef89ecd174969b3544f3f0c7cd1de3c57f737b.tar.gz u-boot-imx-08ef89ecd174969b3544f3f0c7cd1de3c57f737b.tar.bz2 |
Use strmhz() to format clock frequencies
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/mpl')
-rw-r--r-- | board/mpl/common/common_util.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/board/mpl/common/common_util.c b/board/mpl/common/common_util.c index 8990fc6..877a2d0 100644 --- a/board/mpl/common/common_util.c +++ b/board/mpl/common/common_util.c @@ -591,7 +591,7 @@ void video_get_info_str (int line_number, char *info) int i,boot; unsigned long pvr; char buf[64]; - char tmp[16]; + char buf1[32], buf2[32], buf3[32], buf4[32]; char cpustr[16]; char *s, *e, bc; switch (line_number) @@ -644,11 +644,12 @@ void video_get_info_str (int line_number, char *info) } buf[i++]=0; } - sprintf (info," %s %s %s MHz (%lu/%lu/%lu MHz)", + sprintf (info," %s %s %s MHz (%s/%s/%s MHz)", buf, cpustr, - strmhz (tmp, gd->cpu_clk), sys_info.freqPLB / 1000000, - sys_info.freqPLB / sys_info.pllOpbDiv / 1000000, - sys_info.freqPLB / sys_info.pllExtBusDiv / 1000000); + strmhz (buf1, gd->cpu_clk), + strmhz (buf2, sys_info.freqPLB), + strmhz (buf3, sys_info.freqPLB / sys_info.pllOpbDiv), + strmhz (buf4, sys_info.freqPLB / sys_info.pllExtBusDiv)); return; case 3: /* Memory Info */ |