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:
ab857f2
)
MX5: fix warning in clock.c
author
Stefano Babic
<sbabic@denx.de>
Wed, 24 Oct 2012 08:06:28 +0000
(10:06 +0200)
committer
Stefano Babic
<sbabic@denx.de>
Fri, 26 Oct 2012 14:11:32 +0000
(16:11 +0200)
Patch fix warnings compiling with ELDK-4.2:
clock.c: In function 'get_standard_pll_sel_clk':
clock.c:341: warning: 'freq' may be used uninitialized in this function
Reported-by : Marek Vasut <marex@denx.de>
Signed-off-by: Stefano Babic <sbabic@denx.de>
arch/arm/cpu/armv7/mx5/clock.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/mx5/clock.c
b/arch/arm/cpu/armv7/mx5/clock.c
index 2709860ca274884302c88a895faf00ed97cdb999..1c9223fa0783072f77a4aabdb4db225c0ae49856 100644
(file)
--- a/
arch/arm/cpu/armv7/mx5/clock.c
+++ b/
arch/arm/cpu/armv7/mx5/clock.c
@@
-338,7
+338,7
@@
static u32 get_ipg_per_clk(void)
/* Get the output clock rate of a standard PLL MUX for peripherals. */
static u32 get_standard_pll_sel_clk(u32 clk_sel)
{
- u32 freq;
+ u32 freq
= 0
;
switch (clk_sel & 0x3) {
case 0: