Browse Source

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>
Dmitry Osipenko 12 years ago
parent
commit
ac7ae754d5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/dma/tegra20-apb-dma.c

+ 1 - 1
drivers/dma/tegra20-apb-dma.c

@@ -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;
 		}