Revert "iio: buffer-dmaengine: fix releasing dma channel on error"

This reverts commit 776ddbde62.
This commit is contained in:
Ksawlii 2024-11-24 00:23:38 +01:00
parent 08390b1a41
commit caee88ae5f

View file

@ -180,7 +180,7 @@ static struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
ret = dma_get_slave_caps(chan, &caps);
if (ret < 0)
goto err_release;
goto err_free;
/* Needs to be aligned to the maximum of the minimums */
if (caps.src_addr_widths)
@ -207,8 +207,6 @@ static struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
return &dmaengine_buffer->queue.buffer;
err_release:
dma_release_channel(chan);
err_free:
kfree(dmaengine_buffer);
return ERR_PTR(ret);