summaryrefslogtreecommitdiff
path: root/sys/dev/isa/aha.c
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1998-08-13 04:36:51 +0000
committerJason Downs <downsj@cvs.openbsd.org>1998-08-13 04:36:51 +0000
commitc0f56ed4cab10d875becb90fff30677ebeff546d (patch)
tree3a15431a901a977d2caa6ea4ec02f177f0d2a2a0 /sys/dev/isa/aha.c
parentdc966be31bfb5ebe5f895ed0e3e05d2f7a6decbf (diff)
Identify card 0x44 as a 1542C, not 1542CF: Robert Earl <rearl@teleport.com>.
Diffstat (limited to 'sys/dev/isa/aha.c')
-rw-r--r--sys/dev/isa/aha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/aha.c b/sys/dev/isa/aha.c
index 703460df206..1cec44c76c1 100644
--- a/sys/dev/isa/aha.c
+++ b/sys/dev/isa/aha.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aha.c,v 1.30 1997/09/15 19:28:31 flipk Exp $ */
+/* $OpenBSD: aha.c,v 1.31 1998/08/13 04:36:50 downsj Exp $ */
/* $NetBSD: aha.c,v 1.11 1996/05/12 23:51:23 mycroft Exp $ */
#undef AHADIAG
@@ -1139,9 +1139,9 @@ aha_inquire_setup_information(sc)
strcpy(sc->sc_model, "1640");
break;
case 0x43:
+ case 0x44: /* Is this 1542C or -CF? */
strcpy(sc->sc_model, "1542C");
break;
- case 0x44:
case 0x45:
strcpy(sc->sc_model, "1542CF");
break;