[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1351433623-13975-1-git-send-email-digetx@gmail.com>
Date: Sun, 28 Oct 2012 18:13:43 +0400
From: Dmitry Osipenko <digetx@...il.com>
To: digetx@...il.com
Cc: vinod.koul@...el.com, linux-tegra@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 1/2] dma: tegra20-apbdma: trivial err message correction
Fixed err msg params order on irq request fail.
Signed-off-by: Dmitry Osipenko <digetx@...il.com>
---
drivers/dma/tegra20-apb-dma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c
index 528c62d..4d816be 100644
--- a/drivers/dma/tegra20-apb-dma.c
+++ b/drivers/dma/tegra20-apb-dma.c
@@ -1300,7 +1300,7 @@ static int __devinit 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;
}
--
1.7.12
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists