Skip to content

Commit 422dbc6

Browse files
miquelraynalvinodkoul
authored andcommitted
dmaengine: xilinx: xdma: Fix typo
Probably a copy/paste error with the previous block, here we are actually managing C2H IRQs. Fixes: 17ce252 ("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>
1 parent 96891e9 commit 422dbc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/dma/xilinx/xdma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ static int xdma_irq_init(struct xdma_device *xdev)
717717
ret = request_irq(irq, xdma_channel_isr, 0,
718718
"xdma-c2h-channel", &xdev->c2h_chans[j]);
719719
if (ret) {
720-
xdma_err(xdev, "H2C channel%d request irq%d failed: %d",
720+
xdma_err(xdev, "C2H channel%d request irq%d failed: %d",
721721
j, irq, ret);
722722
goto failed_init_c2h;
723723
}

0 commit comments

Comments
 (0)