Skip to content

Commit

Permalink
i2c: nomadik: drop superfluous variable initialization
Browse files Browse the repository at this point in the history
cppcheck rightfully reports those as "reassigned a value before the old
one has been used."

Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Cc: Linus Walleij <linus.walleij@stericsson.com>
  • Loading branch information
Wolfram Sang committed Jan 28, 2013
1 parent 24e9e15 commit 876ae85
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions drivers/i2c/busses/i2c-nomadik.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,7 @@ static void setup_i2c_controller(struct nmk_i2c_dev *dev)
static int read_i2c(struct nmk_i2c_dev *dev, u16 flags)
{
u32 status = 0;
u32 mcr;
u32 irq_mask = 0;
u32 mcr, irq_mask;
int timeout;

mcr = load_i2c_mcr_reg(dev, flags);
Expand Down Expand Up @@ -482,8 +481,7 @@ static void fill_tx_fifo(struct nmk_i2c_dev *dev, int no_bytes)
static int write_i2c(struct nmk_i2c_dev *dev, u16 flags)
{
u32 status = 0;
u32 mcr;
u32 irq_mask = 0;
u32 mcr, irq_mask;
int timeout;

mcr = load_i2c_mcr_reg(dev, flags);
Expand Down Expand Up @@ -731,8 +729,7 @@ static irqreturn_t i2c_irq_handler(int irq, void *arg)
struct nmk_i2c_dev *dev = arg;
u32 tft, rft;
u32 count;
u32 misr;
u32 src = 0;
u32 misr, src;

/* load Tx FIFO and Rx FIFO threshold values */
tft = readl(dev->virtbase + I2C_TFTR);
Expand Down

0 comments on commit 876ae85

Please sign in to comment.