diff options
author | Marcus Folkesson <marcus.folkesson@gmail.com> | 2012-05-03 09:56:36 -0400 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-05-12 14:36:24 -0400 |
commit | 9868a060ccf769c08ec378a9829137e272e9a92c (patch) | |
tree | a5bebafd080e2571b226ef24bb9d184dc4ea1094 /drivers/i2c | |
parent | a5063f16e2963c5d5b54692fb2da2e327162da78 (diff) |
i2c: davinci: Free requested IRQ in remove
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>
Cc: stable@kernel.org
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-davinci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c index a76d85fa3ad7..79b4bcb3b85c 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) | |||
755 | dev->clk = NULL; | 755 | dev->clk = NULL; |
756 | 756 | ||
757 | davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, 0); | 757 | davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, 0); |
758 | free_irq(IRQ_I2C, dev); | 758 | free_irq(dev->irq, dev); |
759 | iounmap(dev->base); | 759 | iounmap(dev->base); |
760 | kfree(dev); | 760 | kfree(dev); |
761 | 761 | ||