summaryrefslogtreecommitdiff
path: root/sys/dev/pcmcia/aic_pcmcia.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-08-16 16:51:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-08-16 16:51:21 +0000
commitb7ba7e898ff6cfa0b51da085ba1aee9edb3e53cd (patch)
tree171041d0c60c9b32c6d9ca92aad50b76e959e0f8 /sys/dev/pcmcia/aic_pcmcia.c
parentc6b1e982eb47fa49f9c232e8874ecd0af01f1cf8 (diff)
manufacturer and product are 16 bits, 0xffff is the special case
Diffstat (limited to 'sys/dev/pcmcia/aic_pcmcia.c')
-rw-r--r--sys/dev/pcmcia/aic_pcmcia.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/aic_pcmcia.c b/sys/dev/pcmcia/aic_pcmcia.c
index 61b9a4e5f7c..b763bfc21ec 100644
--- a/sys/dev/pcmcia/aic_pcmcia.c
+++ b/sys/dev/pcmcia/aic_pcmcia.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aic_pcmcia.c,v 1.6 1999/08/16 06:49:29 fgsch Exp $ */
+/* $OpenBSD: aic_pcmcia.c,v 1.7 1999/08/16 16:51:19 deraadt Exp $ */
/* $NetBSD: aic_pcmcia.c,v 1.6 1998/07/19 17:28:15 christos Exp $ */
/*
@@ -68,8 +68,8 @@ struct cfattach aic_pcmcia_ca = {
};
struct aic_pcmcia_product {
- u_int32_t app_vendor; /* PCMCIA vendor ID */
- u_int32_t app_product; /* PCMCIA product ID */
+ u_int16_t app_vendor; /* PCMCIA vendor ID */
+ u_int16_t app_product; /* PCMCIA product ID */
int app_expfunc; /* expected function number */
} aic_pcmcia_prod[] = {
{ PCMCIA_VENDOR_ADAPTEC, PCMCIA_PRODUCT_ADAPTEC_APA1460_1,