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

Commit ff937890 authored by Masahisa Kojima's avatar Masahisa Kojima Committed by Wolfram Sang
Browse files

i2c: synquacer: fix synquacer_i2c_doxfer() return value



master_xfer should return the number of messages successfully
processed.

Fixes: 0d676a6c ("i2c: add support for Socionext SynQuacer I2C controller")
Cc: <stable@vger.kernel.org> # v4.19+
Signed-off-by: default avatarOkamoto Satoru <okamoto.satoru@socionext.com>
Signed-off-by: default avatarMasahisa Kojima <masahisa.kojima@linaro.org>
Acked-by: default avatarArd Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 13067ef7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ static int synquacer_i2c_doxfer(struct synquacer_i2c *i2c,
	/* wait 2 clock periods to ensure the stop has been through the bus */
	udelay(DIV_ROUND_UP(2 * 1000, i2c->speed_khz));

	return 0;
	return ret;
}

static irqreturn_t synquacer_i2c_isr(int irq, void *dev_id)