diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-16 16:51:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-16 16:51:21 +0000 |
commit | b7ba7e898ff6cfa0b51da085ba1aee9edb3e53cd (patch) | |
tree | 171041d0c60c9b32c6d9ca92aad50b76e959e0f8 /sys/dev/pcmcia/if_sm_pcmcia.c | |
parent | c6b1e982eb47fa49f9c232e8874ecd0af01f1cf8 (diff) |
manufacturer and product are 16 bits, 0xffff is the special case
Diffstat (limited to 'sys/dev/pcmcia/if_sm_pcmcia.c')
-rw-r--r-- | sys/dev/pcmcia/if_sm_pcmcia.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_sm_pcmcia.c b/sys/dev/pcmcia/if_sm_pcmcia.c index 515fb042698..66a955c8db3 100644 --- a/sys/dev/pcmcia/if_sm_pcmcia.c +++ b/sys/dev/pcmcia/if_sm_pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sm_pcmcia.c,v 1.8 1999/08/16 10:25:18 fgsch Exp $ */ +/* $OpenBSD: if_sm_pcmcia.c,v 1.9 1999/08/16 16:51:20 deraadt Exp $ */ /* $NetBSD: if_sm_pcmcia.c,v 1.11 1998/08/15 20:47:32 thorpej Exp $ */ /*- @@ -111,8 +111,8 @@ int sm_pcmcia_funce_enaddr __P((struct device *, u_int8_t *)); int sm_pcmcia_lannid_ciscallback __P((struct pcmcia_tuple *, void *)); struct sm_pcmcia_product { - u_int32_t spp_vendor; /* vendor ID */ - u_int32_t spp_product; /* product ID */ + u_int16_t spp_vendor; /* vendor ID */ + u_int16_t spp_product; /* product ID */ int spp_expfunc; /* expected function */ } sm_pcmcia_prod[] = { { PCMCIA_VENDOR_MEGAHERTZ2, PCMCIA_PRODUCT_MEGAHERTZ2_XJACK, |