diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2021-06-23 12:59:38 +0300 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2021-08-11 16:19:00 +0300 |
commit | 0425b937a79fb03fa73e39b1bd32b012a146998d (patch) | |
tree | c6a869aa3c12235806c97663dd4878c7463bab9b /drivers/i2c | |
parent | 101703ca8e37cddf80db2c17a1ca043a65826e17 (diff) | |
download | linux-0425b937a79fb03fa73e39b1bd32b012a146998d.tar.xz |
i2c: qup: : use proper DMAENGINE API for termination
dmaengine_terminate_all() is deprecated in favor of explicitly saying if
it should be sync or async. Here, we want dmaengine_terminate_sync()
because there is no other synchronization code in the driver to handle
an async case.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-qup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-qup.c b/drivers/i2c/busses/i2c-qup.c index 61dc20fd1191..fcd35e8de83c 100644 --- a/drivers/i2c/busses/i2c-qup.c +++ b/drivers/i2c/busses/i2c-qup.c @@ -778,7 +778,7 @@ static int qup_i2c_bam_schedule_desc(struct qup_i2c_dev *qup) ret = -EINVAL; /* abort TX descriptors */ - dmaengine_terminate_all(qup->btx.dma); + dmaengine_terminate_sync(qup->btx.dma); goto desc_err; } |