Commit 1beb5a7d authored by Sean Young's avatar Sean Young Committed by Mauro Carvalho Chehab

[media] sir_ir: attempt to free already free_irq

If the probe fails (e.g. port already in use), rmmod causes null deref.
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent da731edb
......@@ -381,6 +381,8 @@ static int sir_ir_probe(struct platform_device *dev)
static int sir_ir_remove(struct platform_device *dev)
{
drop_hardware();
drop_port();
return 0;
}
......@@ -421,8 +423,6 @@ static int __init sir_ir_init(void)
static void __exit sir_ir_exit(void)
{
drop_hardware();
drop_port();
platform_device_unregister(sir_ir_dev);
platform_driver_unregister(&sir_ir_driver);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment