aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pcmcia/ds.c
diff options
context:
space:
mode:
authorHugh Dickins <hugh@veritas.com>2006-03-10 16:13:44 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-10 16:40:26 -0500
commit4ceadbf519c6820b236a9a213255260eb825974b (patch)
tree41258b7a6572fe0823695842296519baa51cc766 /drivers/pcmcia/ds.c
parent8fce4d8e3b9e3cf47cc8afeb6077e22ab795d989 (diff)
[PATCH] fix pcmcia_device_probe oops
Fix pcmcia_device_probe NULL pointer dereference at startup. Signed-off-by: Hugh Dickins <hugh@veritas.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/pcmcia/ds.c')
-rw-r--r--drivers/pcmcia/ds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c
index 54ad93daca3c..bb96ce1db08c 100644
--- a/drivers/pcmcia/ds.c
+++ b/drivers/pcmcia/ds.c
@@ -411,7 +411,7 @@ static int pcmcia_device_probe(struct device * dev)
411 * pseudo devices, and if not, add the second one. 411 * pseudo devices, and if not, add the second one.
412 */ 412 */
413 did = (struct pcmcia_device_id *) p_dev->dev.driver_data; 413 did = (struct pcmcia_device_id *) p_dev->dev.driver_data;
414 if ((did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) && 414 if (did && (did->match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO) &&
415 (p_dev->socket->device_count == 1) && (p_dev->device_no == 0)) 415 (p_dev->socket->device_count == 1) && (p_dev->device_no == 0))
416 pcmcia_add_pseudo_device(p_dev->socket); 416 pcmcia_add_pseudo_device(p_dev->socket);
417 417