diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2013-05-11 12:30:52 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-07-05 02:10:37 -0400 |
commit | ac7ae754d592571478959833796b7bdf1a3c08da (patch) | |
tree | ed495990feb6670d0da41ea8baa9b4fe844bdbe1 /drivers/dma | |
parent | 8004cbb481494c166596b0d469a6c777415e18f6 (diff) |
dma: tegra20-apbdma: err message correction
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>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/tegra20-apb-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c index 33f59ecd256e..5953547a5f75 100644 --- a/drivers/dma/tegra20-apb-dma.c +++ b/drivers/dma/tegra20-apb-dma.c | |||
@@ -1334,7 +1334,7 @@ static int tegra_dma_probe(struct platform_device *pdev) | |||
1334 | if (ret) { | 1334 | if (ret) { |
1335 | dev_err(&pdev->dev, | 1335 | dev_err(&pdev->dev, |
1336 | "request_irq failed with err %d channel %d\n", | 1336 | "request_irq failed with err %d channel %d\n", |
1337 | i, ret); | 1337 | ret, i); |
1338 | goto err_irq; | 1338 | goto err_irq; |
1339 | } | 1339 | } |
1340 | 1340 | ||