fsl_i2c.c: In function 'set_i2c_bus_speed':
fsl_i2c.c:120: warning: 'dfsr' may be used uninitialized in this function
fsl_i2c.c:120: warning: 'fdr' may be used uninitialized in this function

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]>

diff --git a/drivers/i2c/fsl_i2c.c b/drivers/i2c/fsl_i2c.c
index dde0571..917a4ba 100644
--- a/drivers/i2c/fsl_i2c.c
+++ b/drivers/i2c/fsl_i2c.c
@@ -117,7 +117,8 @@ static unsigned int set_i2c_bus_speed(const struct fsl_i2c 
*dev,
 {
        unsigned short divider = min(i2c_clk / speed, (unsigned short) -1);
        unsigned int i;
-       u8 fdr, dfsr;
+       u8 fdr = 0x3F;
+       u8 dfsr = 0x3F;
 
        /*
         * We want to choose an FDR/DFSR that generates an I2C bus speed that
-- 
1.5.4.5


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users

Reply via email to