scsi: a4000 - Correct driver unregistration in case of failure
authorGeert Uytterhoeven <geert@linux-m68k.org>
Thu, 9 Apr 2009 19:22:42 +0000 (21:22 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Wed, 22 Apr 2009 18:39:06 +0000 (20:39 +0200)
commit 7a192ec334cab9fafe3a8665a65af398b0e24730 ("platform driver: fix
incorrect use of 'platform_bus_type' with 'struct device_driver') turned a
driver_UNregister into platform_driver_REGISTER. Correct this to
platform_driver_UNregister.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
drivers/scsi/a4000t.c

index 61af3d9..e3519fa 100644 (file)
@@ -129,7 +129,7 @@ static int __init a4000t_scsi_init(void)
        a4000t_scsi_device = platform_device_register_simple("a4000t-scsi",
                        -1, NULL, 0);
        if (IS_ERR(a4000t_scsi_device)) {
-               platform_driver_register(&a4000t_scsi_driver);
+               platform_driver_unregister(&a4000t_scsi_driver);
                return PTR_ERR(a4000t_scsi_device);
        }