diff options
-rw-r--r-- | sys/dev/ed/if_ed_pccard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c index a845d8d..1633273 100644 --- a/sys/dev/ed/if_ed_pccard.c +++ b/sys/dev/ed/if_ed_pccard.c @@ -402,7 +402,8 @@ ed_pccard_match(device_t dev) if ((pp = (const struct ed_product *) pccard_product_lookup(dev, (const struct pccard_product *) ed_pccard_products, sizeof(ed_pccard_products[0]), NULL)) != NULL) { - device_set_desc(dev, pp->prod.pp_name); + if (pp->prod.pp_name != NULL) + device_set_desc(dev, pp->prod.pp_name); if (pp->flags & NE2000DVF_DL10019) device_set_flags(dev, ED_FLAGS_LINKSYS); else if (pp->flags & NE2000DVF_AX88190) |