summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-01-24 23:32:14 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-01-24 23:32:14 +0000
commitda6ac648be01032c927441fd8d201d05ce6dd263 (patch)
tree77dfb67b75b1106265a4118146b7032998452473 /sys/dev
parent73ca79d9917c3a639ce78897daa63bd44991818d (diff)
Also add support for Sierra A550 and A710/A750 which are apparently map
the com port at the same place
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pcmcia/com_pcmcia.c4
-rw-r--r--sys/dev/pcmcia/pcmcia_cis_quirks.c8
2 files changed, 10 insertions, 2 deletions
diff --git a/sys/dev/pcmcia/com_pcmcia.c b/sys/dev/pcmcia/com_pcmcia.c
index 1803a21d582..e625f0f07c7 100644
--- a/sys/dev/pcmcia/com_pcmcia.c
+++ b/sys/dev/pcmcia/com_pcmcia.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com_pcmcia.c,v 1.35 2004/01/24 23:13:55 deraadt Exp $ */
+/* $OpenBSD: com_pcmcia.c,v 1.36 2004/01/24 23:32:13 deraadt Exp $ */
/* $NetBSD: com_pcmcia.c,v 1.15 1998/08/22 17:47:58 msaitoh Exp $ */
/*
@@ -141,7 +141,9 @@ struct com_pcmcia_product {
char *cis1_info[4];
} com_pcmcia_prod[] = {
{ PCMCIA_CIS_MEGAHERTZ_XJ2288 },
+ { PCMCIA_CIS_SIERRA_A550 },
{ PCMCIA_CIS_SIERRA_A555 },
+ { PCMCIA_CIS_SIERRA_A710 },
};
int com_pcmcia_match(struct device *, void *, void *);
diff --git a/sys/dev/pcmcia/pcmcia_cis_quirks.c b/sys/dev/pcmcia/pcmcia_cis_quirks.c
index 7ece10d3b80..29d8f7fc7c3 100644
--- a/sys/dev/pcmcia/pcmcia_cis_quirks.c
+++ b/sys/dev/pcmcia/pcmcia_cis_quirks.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcmcia_cis_quirks.c,v 1.6 2004/01/24 23:13:55 deraadt Exp $ */
+/* $OpenBSD: pcmcia_cis_quirks.c,v 1.7 2004/01/24 23:32:13 deraadt Exp $ */
/* $NetBSD: pcmcia_cis_quirks.c,v 1.3 1998/12/29 09:00:28 marc Exp $ */
/*
@@ -191,9 +191,15 @@ static struct pcmcia_cis_quirk pcmcia_cis_quirks[] = {
PCMCIA_CIS_INVALID,
&pcmcia_megahertz_xjem1144_func1,
&pcmcia_megahertz_xjem1144_func1_cfe0 },
+ { PCMCIA_VENDOR_SIERRA, PCMCIA_PRODUCT_SIERRA_A550,
+ PCMCIA_CIS_INVALID,
+ &pcmcia_sierra_a555_func1, &pcmcia_sierra_a555_func1_cfe0 },
{ PCMCIA_VENDOR_SIERRA, PCMCIA_PRODUCT_SIERRA_A555,
PCMCIA_CIS_INVALID,
&pcmcia_sierra_a555_func1, &pcmcia_sierra_a555_func1_cfe0 },
+ { PCMCIA_VENDOR_SIERRA, PCMCIA_PRODUCT_SIERRA_A710,
+ PCMCIA_CIS_INVALID,
+ &pcmcia_sierra_a555_func1, &pcmcia_sierra_a555_func1_cfe0 },
{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
PCMCIA_CIS_SVEC_LANCARD,
&pcmcia_sveclancard_func0, &pcmcia_sveclancard_func0_cfe0 },