aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-11-25 07:25:08 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-11-25 07:25:08 +0000
commit5e12cd9b804e6e47aafa99d0c091a183a7546b4d (patch)
tree979c0d8e2b2109dfc62f32d22010ed25bc270891 /sys
parent747fa57549321231afad4afd7d1f3b791f12e4ec (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/ed/if_ed_pccard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c
index 86549128b39d..691245693843 100644
--- a/sys/dev/ed/if_ed_pccard.c
+++ b/sys/dev/ed/if_ed_pccard.c
@@ -116,7 +116,7 @@ ed_pccard_detach(device_t dev)
return (0);
}
-const struct pccard_product sn_pccard_products[] = {
+static const struct pccard_product ed_pccard_products[] = {
{ PCCARD_STR_KINGSTON_KNE2, PCCARD_VENDOR_KINGSTON,
PCCARD_PRODUCT_KINGSTON_KNE2, 0, NULL, NULL },
{ NULL }
@@ -127,8 +127,8 @@ ed_pccard_match(device_t dev)
{
const struct pccard_product *pp;
- if ((pp = pccard_product_lookup(dev, sn_pccard_products,
- sizeof(sn_pccard_products[0]), NULL)) != NULL) {
+ if ((pp = pccard_product_lookup(dev, ed_pccard_products,
+ sizeof(ed_pccard_products[0]), NULL)) != NULL) {
device_set_desc(dev, pp->pp_name);
return 0;
}