projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96891e9
)
dmaengine: xilinx: xdma: Fix typo
author
Miquel Raynal
<miquel.raynal@bootlin.com>
Mon, 31 Jul 2023 10:14:40 +0000
(12:14 +0200)
committer
Vinod Koul
<vkoul@kernel.org>
Sun, 6 Aug 2023 18:31:41 +0000
(
00:01
+0530)
Probably a copy/paste error with the previous block, here we are
actually managing C2H IRQs.
Fixes: 17ce252266c7 ("dmaengine: xilinx: xdma: Add xilinx xdma driver")
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link:
https://lore.kernel.org/r/20230731101442.792514-3-miquel.raynal@bootlin.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/xilinx/xdma.c
patch
|
blob
|
history
diff --git
a/drivers/dma/xilinx/xdma.c
b/drivers/dma/xilinx/xdma.c
index 5116188b997786d7efb0dcbdba8ee537b8ed1a7d..e0bfd129d563f3687a55e298d30157595245c3cf 100644
(file)
--- a/
drivers/dma/xilinx/xdma.c
+++ b/
drivers/dma/xilinx/xdma.c
@@
-717,7
+717,7
@@
static int xdma_irq_init(struct xdma_device *xdev)
ret = request_irq(irq, xdma_channel_isr, 0,
"xdma-c2h-channel", &xdev->c2h_chans[j]);
if (ret) {
- xdma_err(xdev, "
H2C
channel%d request irq%d failed: %d",
+ xdma_err(xdev, "
C2H
channel%d request irq%d failed: %d",
j, irq, ret);
goto failed_init_c2h;
}