mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 22:52:35 +02:00
i2c: davinci: Free requested IRQ in remove
commit 9868a060cc 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ab55458eb0
commit
d19adfe6ca
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user