staging: ft1000-pcmcia: don't crash on load
authorOndrej Zary <linux@rainbow-software.org>
Thu, 30 Jun 2011 22:03:30 +0000 (00:03 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 5 Jul 2011 17:32:30 +0000 (10:32 -0700)
Don't crash with NULL pointer dereference on load because of empty .name.

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/ft1000/ft1000-pcmcia/ft1000_cs.c

index 68ea035..eefaa65 100644 (file)
@@ -295,9 +295,7 @@ MODULE_DEVICE_TABLE(pcmcia, ft1000_ids);
 
 static struct pcmcia_driver ft1000_cs_driver = {
        .owner = THIS_MODULE,
-       .drv = {
-               .name = "ft1000_cs",
-               },
+       .name = "ft1000_cs",
        .probe      = ft1000_attach,
        .remove     = ft1000_detach,
        .id_table       = ft1000_ids,