summaryrefslogtreecommitdiffstats
path: root/sys/dev/an/if_an_pccard.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2003-04-10 04:36:02 +0000
committerimp <imp@FreeBSD.org>2003-04-10 04:36:02 +0000
commit0b41fd998b452c7ec8d7ba1da74ab2d3aeca7668 (patch)
treeb753190964ccbd5954520469be2512025019f370 /sys/dev/an/if_an_pccard.c
parentb8eb5e1cd083ce0919059e4dd7b1fac281f14613 (diff)
downloadFreeBSD-src-0b41fd998b452c7ec8d7ba1da74ab2d3aeca7668.zip
FreeBSD-src-0b41fd998b452c7ec8d7ba1da74ab2d3aeca7668.tar.gz
Make sure that pp_name is non-null before setting the device
description. This allows us to rely entirely on the CIS entries if necessary...
Diffstat (limited to 'sys/dev/an/if_an_pccard.c')
-rw-r--r--sys/dev/an/if_an_pccard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c
index d8c6391..9768eb8 100644
--- a/sys/dev/an/if_an_pccard.c
+++ b/sys/dev/an/if_an_pccard.c
@@ -122,7 +122,8 @@ an_pccard_match(device_t dev)
if ((pp = pccard_product_lookup(dev, an_pccard_products,
sizeof(an_pccard_products[0]), NULL)) != NULL) {
- device_set_desc(dev, pp->pp_name);
+ if (pp->pp_name != NULL)
+ device_set_desc(dev, pp->pp_name);
return (0);
}
return (ENXIO);
OpenPOWER on IntegriCloud