summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2002-03-25 20:28:07 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2002-03-25 20:28:07 +0000
commitadc359015cca27a1ff8999c3236c62cb505dacf7 (patch)
treee29e278d1ed5212e738437f9f1c0a7cbe594ae0c /sys/dev
parent2886fce7217a6ae81835d100f588aa86052238b7 (diff)
support 630ETi; from wyllie@dilex.net
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_sis.c5
-rw-r--r--sys/dev/pci/if_sisreg.h3
2 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/pci/if_sis.c b/sys/dev/pci/if_sis.c
index efa5a4c7f0e..fdfb542de5f 100644
--- a/sys/dev/pci/if_sis.c
+++ b/sys/dev/pci/if_sis.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_sis.c,v 1.22 2002/03/14 01:26:59 millert Exp $ */
+/* $OpenBSD: if_sis.c,v 1.23 2002/03/25 20:28:06 mickey Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
* Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
@@ -820,7 +820,8 @@ void sis_attach(parent, self, aux)
0x9, 6);
else
#endif
- if (command == SIS_REV_630EA1)
+ if (command == SIS_REV_630EA1 ||
+ command == SIS_REV_630ET)
sis_read_630ea1_enaddr(sc, pa);
else
sis_read_eeprom(sc, (caddr_t)&sc->arpcom.ac_enaddr,
diff --git a/sys/dev/pci/if_sisreg.h b/sys/dev/pci/if_sisreg.h
index 3869bfdb1eb..4c2be26037f 100644
--- a/sys/dev/pci/if_sisreg.h
+++ b/sys/dev/pci/if_sisreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_sisreg.h,v 1.8 2002/02/08 04:43:24 chris Exp $ */
+/* $OpenBSD: if_sisreg.h,v 1.9 2002/03/25 20:28:06 mickey Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
* Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
@@ -370,6 +370,7 @@ struct sis_ring_data {
#define SIS_REV_630E 0x0081
#define SIS_REV_630S 0x0082
#define SIS_REV_630EA1 0x0083
+#define SIS_REV_630ET 0x0084
struct sis_type {
u_int16_t sis_vid;