diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2022-07-16 20:50:25 -0700 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2022-07-24 20:35:18 +0200 |
commit | b3f0ceb7c2037c6e3affd7d9c84ac5f97af7a5b5 (patch) | |
tree | f5c5ea0f6b2c3d20ef606f73b3b7b88a9ca0a4e9 /drivers/i2c/busses/i2c-qcom-geni.c | |
parent | 9fdf6d97f03035ad5298e2d1635036c74c2090ed (diff) |
i2c: qcom-geni: Use the correct return value
The introduction of GPI support moved things around and instead of
returning the result from geni_i2c_xfer() the number of messages in the
request was returned, ignoring the actual result. Fix this.
Fixes: d8703554f4de ("i2c: qcom-geni: Add support for GPI DMA")
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: Andrew Halaney <ahalaney@redhat.com>
Reviewed-by: Vinod Koul <vkoul@kernel.org>
Reviewed-by: Johan Hovold <johan+linaro@kernel.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses/i2c-qcom-geni.c')
-rw-r--r-- | drivers/i2c/busses/i2c-qcom-geni.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c index c189b8fbc578..6ac179a373ff 100644 --- a/drivers/i2c/busses/i2c-qcom-geni.c +++ b/drivers/i2c/busses/i2c-qcom-geni.c @@ -698,7 +698,7 @@ static int geni_i2c_xfer(struct i2c_adapter *adap, pm_runtime_put_autosuspend(gi2c->se.dev); gi2c->cur = NULL; gi2c->err = 0; - return num; + return ret; } static u32 geni_i2c_func(struct i2c_adapter *adap) |