1
0
Fork 0

i2c: synquacer: fix synquacer_i2c_doxfer() return value

master_xfer should return the number of messages successfully
processed.

Fixes: 0d676a6c43 ("i2c: add support for Socionext SynQuacer I2C controller")
Cc: <stable@vger.kernel.org> # v4.19+
Signed-off-by: Okamoto Satoru <okamoto.satoru@socionext.com>
Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
hifive-unleashed-5.2
Masahisa Kojima 2019-05-21 10:33:50 +09:00 committed by Wolfram Sang
parent 13067ef73f
commit ff9378904d
1 changed files with 1 additions and 1 deletions

View File

@ -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)