mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
[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: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
da731edb5b
commit
1beb5a7d1b
@ -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 @@ pdev_alloc_fail:
|
||||
|
||||
static void __exit sir_ir_exit(void)
|
||||
{
|
||||
drop_hardware();
|
||||
drop_port();
|
||||
platform_device_unregister(sir_ir_dev);
|
||||
platform_driver_unregister(&sir_ir_driver);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user