Skip to content
Snippets Groups Projects
Commit 8b337be0 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

mpc8220/i2c.c: Fix GCC 4.6 build warning


Fix:
i2c.c: In function 'wait_for_bb':
i2c.c:109:16: warning: variable 'temp' set but not used
[-Wunused-but-set-variable]

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
Cc: Heiko Schocher <hs@denx.de>
parent 918e3467
No related branches found
No related tags found
No related merge requests found
...@@ -105,15 +105,13 @@ static int wait_for_bb (void) ...@@ -105,15 +105,13 @@ static int wait_for_bb (void)
status = mpc_reg_in (&regs->sr); status = mpc_reg_in (&regs->sr);
while (timeout-- && (status & I2C_BB)) { while (timeout-- && (status & I2C_BB)) {
#if 1
volatile int temp;
mpc_reg_out (&regs->cr, I2C_STA, I2C_STA); mpc_reg_out (&regs->cr, I2C_STA, I2C_STA);
temp = mpc_reg_in (&regs->dr); (void)mpc_reg_in (&regs->dr);
mpc_reg_out (&regs->cr, 0, I2C_STA); mpc_reg_out (&regs->cr, 0, I2C_STA);
mpc_reg_out (&regs->cr, 0, 0); mpc_reg_out (&regs->cr, 0, 0);
mpc_reg_out (&regs->cr, I2C_EN, 0); mpc_reg_out (&regs->cr, I2C_EN, 0);
#endif
udelay (1000); udelay (1000);
status = mpc_reg_in (&regs->sr); status = mpc_reg_in (&regs->sr);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment