Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 194fa7ff authored by Wolfram Sang's avatar Wolfram Sang
Browse files

i2c: exynos5: use proper errno for timeout



Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 2fd36c55
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -457,7 +457,7 @@ static irqreturn_t exynos5_i2c_irq(int irqno, void *dev_id)
			goto stop;
			goto stop;
		} else if (int_status & HSI2C_INT_TIMEOUT) {
		} else if (int_status & HSI2C_INT_TIMEOUT) {
			dev_dbg(i2c->dev, "Accessing device timed out\n");
			dev_dbg(i2c->dev, "Accessing device timed out\n");
			i2c->state = -EAGAIN;
			i2c->state = -ETIMEDOUT;
			goto stop;
			goto stop;
		}
		}
	} else if (int_status & HSI2C_INT_I2C) {
	} else if (int_status & HSI2C_INT_I2C) {
@@ -476,7 +476,7 @@ static irqreturn_t exynos5_i2c_irq(int irqno, void *dev_id)
			goto stop;
			goto stop;
		} else if (trans_status & HSI2C_TIMEOUT_AUTO) {
		} else if (trans_status & HSI2C_TIMEOUT_AUTO) {
			dev_dbg(i2c->dev, "Accessing device timed out\n");
			dev_dbg(i2c->dev, "Accessing device timed out\n");
			i2c->state = -EAGAIN;
			i2c->state = -ETIMEDOUT;
			goto stop;
			goto stop;
		} else if (trans_status & HSI2C_TRANS_DONE) {
		} else if (trans_status & HSI2C_TRANS_DONE) {
			i2c->trans_done = 1;
			i2c->trans_done = 1;