[PATCH v3 1/3] dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis

Khairul Anuar Romli posted 3 patches 2 weeks, 1 day ago
There is a newer version of this series
[PATCH v3 1/3] dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis
Posted by Khairul Anuar Romli 2 weeks, 1 day ago
Check warning is throws when run scripts/checkpatch.pl --strict:
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:345
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:356
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:494
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:1165
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:1454
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:1648

Signed-off-by: Khairul Anuar Romli <karom.9560@gmail.com>
---
Changes in v3:
	- Split the patch into smaller patches according type
	  of warning.
Changes in v2:
	- rebase on top of 3c8a86ed002a "dmaengine: xilinx: xdma: use
	  sg_nents_for_dma() helper"
	- refactor the commit title

Reference to v1:
https://lore.kernel.org/all/20260104093529.40913-1-karom.9560@gmail.com/
---
 drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c | 17 ++++++++---------
 drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c b/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
index 493c2a32b0fe..8bb97fb8fd4c 100644
--- a/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
+++ b/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
@@ -342,8 +342,8 @@ static void axi_desc_put(struct axi_dma_desc *desc)
 	kfree(desc);
 	atomic_sub(descs_put, &chan->descs_allocated);
 	dev_vdbg(chan2dev(chan), "%s: %d descs put, %d still allocated\n",
-		axi_chan_name(chan), descs_put,
-		atomic_read(&chan->descs_allocated));
+		 axi_chan_name(chan), descs_put,
+		 atomic_read(&chan->descs_allocated));
 }
 
 static void vchan_desc_put(struct virt_dma_desc *vdesc)
@@ -353,7 +353,7 @@ static void vchan_desc_put(struct virt_dma_desc *vdesc)
 
 static enum dma_status
 dma_chan_tx_status(struct dma_chan *dchan, dma_cookie_t cookie,
-		  struct dma_tx_state *txstate)
+		   struct dma_tx_state *txstate)
 {
 	struct axi_dma_chan *chan = dchan_to_axi_dma_chan(dchan);
 	struct virt_dma_desc *vdesc;
@@ -491,7 +491,7 @@ static void axi_chan_start_first_queued(struct axi_dma_chan *chan)
 
 	desc = vd_to_axi_desc(vd);
 	dev_vdbg(chan2dev(chan), "%s: started %u\n", axi_chan_name(chan),
-		vd->tx.cookie);
+		 vd->tx.cookie);
 	axi_chan_block_xfer_start(chan, desc);
 }
 
@@ -1162,7 +1162,7 @@ static irqreturn_t dw_axi_dma_interrupt(int irq, void *dev_id)
 		axi_chan_irq_clear(chan, status);
 
 		dev_vdbg(chip->dev, "%s %u IRQ status: 0x%08x\n",
-			axi_chan_name(chan), i, status);
+			 axi_chan_name(chan), i, status);
 
 		if (status & DWAXIDMAC_IRQ_ALL_ERR)
 			axi_chan_handle_err(chan, status);
@@ -1451,7 +1451,7 @@ static int axi_req_irqs(struct platform_device *pdev, struct axi_dma_chip *chip)
 		if (chip->irq[i] < 0)
 			return chip->irq[i];
 		ret = devm_request_irq(chip->dev, chip->irq[i], dw_axi_dma_interrupt,
-				IRQF_SHARED, KBUILD_MODNAME, chip);
+				       IRQF_SHARED, KBUILD_MODNAME, chip);
 		if (ret < 0)
 			return ret;
 	}
@@ -1645,7 +1645,7 @@ static void dw_remove(struct platform_device *pdev)
 	of_dma_controller_free(chip->dev->of_node);
 
 	list_for_each_entry_safe(chan, _chan, &dw->dma.channels,
-			vc.chan.device_node) {
+				 vc.chan.device_node) {
 		list_del(&chan->vc.chan.device_node);
 		tasklet_kill(&chan->vc.task);
 	}
-- 
2.43.0
Re: [PATCH v3 1/3] dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis
Posted by Markus Elfring 2 weeks, 1 day ago
> Check warning is throws when run scripts/checkpatch.pl --strict:
> drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:345

Please improve such a change description another bit.
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.19-rc6#n45

You might not need to mention all affected source code positions here.


…
> ---
> Changes in v3:
> 	- Split the patch into smaller patches according type
> 	  of warning.
…

* I find this hint relevant also for a better commit message.

* You do not need to repeat patch version descriptions here
  after you provided them in the cover letter already.


Regards,
Markus
Re: [PATCH v3 1/3] dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis
Posted by Khairul Anuar Romli 2 weeks, 1 day ago
On 24/1/2026 5:05 pm, Markus Elfring wrote:
>> Check warning is throws when run scripts/checkpatch.pl --strict:
>> drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c:345
> 
> Please improve such a change description another bit.
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.19-rc6#n45
> 
> You might not need to mention all affected source code positions here.
> 


I will improve the change description and omit mentioning all the 
affected source code in the next revision.

> 
> …
>> ---
>> Changes in v3:
>> 	- Split the patch into smaller patches according type
>> 	  of warning.
> …
> 
> * I find this hint relevant also for a better commit message.
> 
> * You do not need to repeat patch version descriptions here
>    after you provided them in the cover letter already.
> 
Noted. Will keep to the cover letter and avoid repeating the same 
description in every single patch.

> 
> Regards,
> Markus