projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e377920
)
board/sbc8548/sbc8548.c: Fix GCC 4.6 build warning
author
Kumar Gala
<galak@kernel.crashing.org>
Wed, 9 Nov 2011 16:03:26 +0000
(10:03 -0600)
committer
Kumar Gala
<galak@kernel.crashing.org>
Fri, 11 Nov 2011 13:49:00 +0000
(07:49 -0600)
Fix:
sbc8548.c: In function 'local_bus_init':
sbc8548.c:80:7: warning: variable 'lbc_hz' set but not used [-Wunused-but-set-variable]
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
board/sbc8548/sbc8548.c
patch
|
blob
|
history
diff --git
a/board/sbc8548/sbc8548.c
b/board/sbc8548/sbc8548.c
index e1a3ea36e95564f2375b168f6c5e4dce7392ddf0..26095a545596f96a48f775b18ebed7bad0084a31 100644
(file)
--- a/
board/sbc8548/sbc8548.c
+++ b/
board/sbc8548/sbc8548.c
@@
-77,12
+77,10
@@
local_bus_init(void)
volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
uint clkdiv;
- uint lbc_hz;
sys_info_t sysinfo;
get_sys_info(&sysinfo);
clkdiv = (in_be32(&lbc->lcrr) & LCRR_CLKDIV) * 2;
- lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
out_be32(&gur->lbiuiplldcr1, 0x00078080);
if (clkdiv == 16) {