Commit 79f18a06 authored by Alexey Khoroshilov's avatar Alexey Khoroshilov Committed by David S. Miller

ide-tape: fix misprint in failure handling in idetape_init()

If driver_register() failed there is no sense to call driver_unregister().
unregister_chrdev() should be called here.

Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: default avatarAlexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 40506d40
...@@ -2052,12 +2052,12 @@ static int __init idetape_init(void) ...@@ -2052,12 +2052,12 @@ static int __init idetape_init(void)
error = driver_register(&idetape_driver.gen_driver); error = driver_register(&idetape_driver.gen_driver);
if (error) if (error)
goto out_free_driver; goto out_free_chrdev;
return 0; return 0;
out_free_driver: out_free_chrdev:
driver_unregister(&idetape_driver.gen_driver); unregister_chrdev(IDETAPE_MAJOR, "ht");
out_free_class: out_free_class:
class_destroy(idetape_sysfs_class); class_destroy(idetape_sysfs_class);
out: out:
......
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