aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/i2c/busses/i2c-pnx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-pnx.c b/drivers/i2c/busses/i2c-pnx.c
index 6ff6c20f1e78..68c8233b6df0 100644
--- a/drivers/i2c/busses/i2c-pnx.c
+++ b/drivers/i2c/busses/i2c-pnx.c
@@ -54,6 +54,9 @@ static inline void i2c_pnx_arm_timer(struct i2c_adapter *adap)
54 struct timer_list *timer = &data->mif.timer; 54 struct timer_list *timer = &data->mif.timer;
55 int expires = I2C_PNX_TIMEOUT / (1000 / HZ); 55 int expires = I2C_PNX_TIMEOUT / (1000 / HZ);
56 56
57 if (expires <= 1)
58 expires = 2;
59
57 del_timer_sync(timer); 60 del_timer_sync(timer);
58 61
59 dev_dbg(&adap->dev, "Timer armed at %lu plus %u jiffies.\n", 62 dev_dbg(&adap->dev, "Timer armed at %lu plus %u jiffies.\n",