i2c: octeon: Remove superfluous check in octeon_i2c_test_iflg

Remove superfluous check and stray newline.

Signed-off-by: Jan Glauber <jglauber@cavium.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
Jan Glauber 2016-04-11 17:28:36 +02:00 committed by Wolfram Sang
parent c57db7098b
commit b69e5c672d

View file

@ -198,10 +198,9 @@ static irqreturn_t octeon_i2c_isr(int irq, void *dev_id)
return IRQ_HANDLED;
}
static int octeon_i2c_test_iflg(struct octeon_i2c *i2c)
{
return (octeon_i2c_ctl_read(i2c) & TWSI_CTL_IFLG) != 0;
return (octeon_i2c_ctl_read(i2c) & TWSI_CTL_IFLG);
}
/**