forked from Minki/linux
staging: ft1000-pcmcia: don't crash on load
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>
This commit is contained in:
parent
378af48333
commit
01cafa528d
@ -295,9 +295,7 @@ MODULE_DEVICE_TABLE(pcmcia, ft1000_ids);
|
|||||||
|
|
||||||
static struct pcmcia_driver ft1000_cs_driver = {
|
static struct pcmcia_driver ft1000_cs_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.drv = {
|
.name = "ft1000_cs",
|
||||||
.name = "ft1000_cs",
|
|
||||||
},
|
|
||||||
.probe = ft1000_attach,
|
.probe = ft1000_attach,
|
||||||
.remove = ft1000_detach,
|
.remove = ft1000_detach,
|
||||||
.id_table = ft1000_ids,
|
.id_table = ft1000_ids,
|
||||||
|
Loading…
Reference in New Issue
Block a user