mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 06:18:13 +00:00
189ce92b4c
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 38de7136cb639352d20e39a90c41bb93f63a03e6 Mon Sep 17 00:00:00 2001
|
|
From: Marcus Folkesson <marcus.folkesson@gmail.com>
|
|
Date: Thu, 3 May 2012 15:56:36 +0200
|
|
Subject: [PATCH 110/117] i2c: davinci: Free requested IRQ in remove
|
|
|
|
commit 9868a060ccf769c08ec378a9829137e272e9a92c upstream.
|
|
|
|
The freed IRQ is not necessary the one requested in probe.
|
|
Even if it was, with two or more i2c-controllers it will fails anyway.
|
|
|
|
Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
|
|
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
|
|
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
|
|
---
|
|
drivers/i2c/busses/i2c-davinci.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c
|
|
index a76d85f..79b4bcb 100644
|
|
--- a/drivers/i2c/busses/i2c-davinci.c
|
|
+++ b/drivers/i2c/busses/i2c-davinci.c
|
|
@@ -755,7 +755,7 @@ static int davinci_i2c_remove(struct platform_device *pdev)
|
|
dev->clk = NULL;
|
|
|
|
davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, 0);
|
|
- free_irq(IRQ_I2C, dev);
|
|
+ free_irq(dev->irq, dev);
|
|
iounmap(dev->base);
|
|
kfree(dev);
|
|
|
|
--
|
|
1.7.9.5
|
|
|