]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis
authorKhairul Anuar Romli <karom.9560@gmail.com>
Mon, 2 Feb 2026 06:02:17 +0000 (14:02 +0800)
committerVinod Koul <vkoul@kernel.org>
Wed, 25 Feb 2026 10:03:38 +0000 (15:33 +0530)
commit6c5883a9ba296d2797437066592d15b2d202de7a
tree6ef387c52a3ed6bae42fea0972451704039627a8
parentff7cbcca2b32c6e079941e577c41c74036861d5a
dmaengine: dw-axi-dmac: fix Alignment should match open parenthesis

checkpatch.pl --strict reports a CHECK warning in dw-axi-dmac-platform.c:

  CHECK: Alignment should match open parenthesis

This warning occurs when multi-line function calls or expressions have
continuation lines that don't properly align with the opening parenthesis
position.

This patch fixes all instances in dw-axi-dmac-platform.c where continuation
lines were indented with an inconsistent number of spaces/tabs that neither
matched the parenthesis column nor followed a standard indent pattern.
Proper alignment improves code readability and maintainability by making
parameter lists visually consistent across the kernel codebase.

Fixes: 1fe20f1b8454 ("dmaengine: Introduce DW AXI DMAC driver")
Fixes: e32634f466a9 ("dma: dw-axi-dmac: support per channel interrupt")
Signed-off-by: Khairul Anuar Romli <karom.9560@gmail.com>
Link: https://patch.msgid.link/20260202060224.12616-2-karom.9560@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c