Skip to content

Commit

Permalink
dmaengine: xilinx: xdma: Fix typo
Browse files Browse the repository at this point in the history
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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Vinod Koul <[email protected]>
  • Loading branch information
miquelraynal authored and vinodkoul committed Aug 6, 2023
1 parent 96891e9 commit 422dbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dma/xilinx/xdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 422dbc6

Please sign in to comment.