summaryrefslogtreecommitdiffstats
path: root/sys/dev/stg
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/stg
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/stg')
-rw-r--r--sys/dev/stg/tmc18c30_pccard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/stg/tmc18c30_pccard.c b/sys/dev/stg/tmc18c30_pccard.c
index b99fdd2..4a12139 100644
--- a/sys/dev/stg/tmc18c30_pccard.c
+++ b/sys/dev/stg/tmc18c30_pccard.c
@@ -87,7 +87,8 @@ static int stg_pccard_match(device_t dev)
if ((pp = pccard_product_lookup(dev, stg_products,
sizeof(stg_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(EIO);
OpenPOWER on IntegriCloud