Commit a2932b35 authored by Igor Popik's avatar Igor Popik Committed by Dominik Brodowski

[PCMCIA] i82365: release all resources if no devices are found

The i82365 driver does not release all the resources when the device is not
found. This can cause an oops when reading /proc/ioports after module
unload.
Signed-off-by: default avatarIgor Popik <igor.popik@gmail.com>
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
parent e3463150
...@@ -1366,6 +1366,7 @@ static int __init init_i82365(void) ...@@ -1366,6 +1366,7 @@ static int __init init_i82365(void)
if (sockets == 0) { if (sockets == 0) {
printk("not found.\n"); printk("not found.\n");
platform_device_unregister(&i82365_device); platform_device_unregister(&i82365_device);
release_region(i365_base, 2);
driver_unregister(&i82365_driver); driver_unregister(&i82365_driver);
return -ENODEV; return -ENODEV;
} }
......
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