From: Rosen Penev <rosenp@gmail.com>
To: linux-ide@vger.kernel.org
Cc: Damien Le Moal <dlemoal@kernel.org>,
Niklas Cassel <cassel@kernel.org>,
linux-kernel@vger.kernel.org (open list)
Subject: [PATCH] ata: pata_ep93xx: use devm_dma_request_chan for DMA channels
Date: Thu, 23 Jul 2026 14:41:28 -0700 [thread overview]
Message-ID: <20260723214128.356942-1-rosenp@gmail.com> (raw)
Convert the manual DMA channel request/release in ep93xx_pata_dma_init()
to the managed devm_dma_request_chan() API. This removes the now-unused
ep93xx_pata_release_dma() helper and the error-path cleanup in
ep93xx_pata_probe()/ep93xx_pata_remove(), simplifying the code and
avoiding potential leaks if probe fails after DMA init.
Assisted-by: opencode:hy3-free
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
drivers/ata/pata_ep93xx.c | 50 +++++++--------------------------------
1 file changed, 9 insertions(+), 41 deletions(-)
diff --git a/drivers/ata/pata_ep93xx.c b/drivers/ata/pata_ep93xx.c
index 339ee5e43e9f..04ab37134fb2 100644
--- a/drivers/ata/pata_ep93xx.c
+++ b/drivers/ata/pata_ep93xx.c
@@ -627,18 +627,6 @@ static int ep93xx_pata_bus_softreset(struct ata_port *ap, unsigned int devmask,
return ep93xx_pata_wait_after_reset(&ap->link, devmask, deadline);
}
-static void ep93xx_pata_release_dma(struct ep93xx_pata_data *drv_data)
-{
- if (drv_data->dma_rx_channel) {
- dma_release_channel(drv_data->dma_rx_channel);
- drv_data->dma_rx_channel = NULL;
- }
- if (drv_data->dma_tx_channel) {
- dma_release_channel(drv_data->dma_tx_channel);
- drv_data->dma_tx_channel = NULL;
- }
-}
-
static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
{
struct platform_device *pdev = drv_data->pdev;
@@ -655,7 +643,7 @@ static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
* to request only one channel, and reprogram it's direction at
* start of new transfer.
*/
- drv_data->dma_rx_channel = dma_request_chan(dev, "rx");
+ drv_data->dma_rx_channel = devm_dma_request_chan(dev, "rx");
if (IS_ERR(drv_data->dma_rx_channel)) {
ret = PTR_ERR(drv_data->dma_rx_channel);
drv_data->dma_rx_channel = NULL;
@@ -665,14 +653,14 @@ static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
return 0;
}
- drv_data->dma_tx_channel = dma_request_chan(&pdev->dev, "tx");
+ drv_data->dma_tx_channel = devm_dma_request_chan(&pdev->dev, "tx");
if (IS_ERR(drv_data->dma_tx_channel)) {
ret = PTR_ERR(drv_data->dma_tx_channel);
drv_data->dma_tx_channel = NULL;
if (ret == -EPROBE_DEFER)
- goto fail_release_rx;
+ return ret;
dev_warn(dev, "tx DMA unavailable, using PIO\n");
- goto fail_release_rx;
+ return 0;
}
/* Configure receive channel direction and source address */
@@ -683,7 +671,7 @@ static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
ret = dmaengine_slave_config(drv_data->dma_rx_channel, &conf);
if (ret) {
dev_warn(dev, "failed to configure rx dma channel, using PIO\n");
- goto fail_release_dma;
+ return 0;
}
/* Configure transmit channel direction and destination address */
@@ -694,21 +682,10 @@ static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
ret = dmaengine_slave_config(drv_data->dma_tx_channel, &conf);
if (ret) {
dev_warn(dev, "failed to configure tx dma channel, using PIO\n");
- goto fail_release_dma;
+ return 0;
}
return 0;
-
-fail_release_rx:
- dma_release_channel(drv_data->dma_rx_channel);
- drv_data->dma_rx_channel = NULL;
- if (ret == -EPROBE_DEFER)
- return ret;
- return 0;
-
-fail_release_dma:
- ep93xx_pata_release_dma(drv_data);
- return 0;
}
static void ep93xx_pata_dma_start(struct ata_queued_cmd *qc)
@@ -959,10 +936,8 @@ static int ep93xx_pata_probe(struct platform_device *pdev)
/* allocate host */
host = ata_host_alloc(&pdev->dev, 1);
- if (!host) {
- err = -ENOMEM;
- goto err_rel_dma;
- }
+ if (!host)
+ return -ENOMEM;
ep93xx_pata_clear_regs(ide_base);
@@ -999,14 +974,8 @@ static int ep93xx_pata_probe(struct platform_device *pdev)
dev_info(&pdev->dev, "version " DRV_VERSION "\n");
/* activate host */
- err = ata_host_activate(host, irq, ata_bmdma_interrupt, 0,
+ return ata_host_activate(host, irq, ata_bmdma_interrupt, 0,
&ep93xx_pata_sht);
- if (err == 0)
- return 0;
-
-err_rel_dma:
- ep93xx_pata_release_dma(drv_data);
- return err;
}
static void ep93xx_pata_remove(struct platform_device *pdev)
@@ -1015,7 +984,6 @@ static void ep93xx_pata_remove(struct platform_device *pdev)
struct ep93xx_pata_data *drv_data = host->private_data;
ata_host_detach(host);
- ep93xx_pata_release_dma(drv_data);
ep93xx_pata_clear_regs(drv_data->ide_base);
}
--
2.55.0
next reply other threads:[~2026-07-23 21:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-23 21:41 Rosen Penev [this message]
2026-07-23 21:47 ` [PATCH] ata: pata_ep93xx: use devm_dma_request_chan for DMA channels sashiko-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260723214128.356942-1-rosenp@gmail.com \
--to=rosenp@gmail.com \
--cc=cassel@kernel.org \
--cc=dlemoal@kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox