Skip to content

Commit

Permalink
dma: tegra20-apbdma: err message correction
Browse files Browse the repository at this point in the history
Fixed err msg params order on irq request fail.

Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
  • Loading branch information
Dmitry Osipenko authored and Vinod Koul committed Jul 5, 2013
1 parent 8004cbb commit ac7ae75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dma/tegra20-apb-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ static int tegra_dma_probe(struct platform_device *pdev)
if (ret) {
dev_err(&pdev->dev,
"request_irq failed with err %d channel %d\n",
i, ret);
ret, i);
goto err_irq;
}

Expand Down

0 comments on commit ac7ae75

Please sign in to comment.