disable AHA-284x product ID, because it is now handled by ahc_isa.c.

This commit is contained in:
soda 1996-08-05 21:18:56 +00:00
parent 9e413208a9
commit 9d1a802eba
2 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ahc_eisa.c,v 1.5 1996/07/10 22:52:36 explorer Exp $ */
/* $NetBSD: ahc_eisa.c,v 1.6 1996/08/05 21:18:56 soda Exp $ */
/*
* Product specific probe and attach routines for:
@ -247,9 +247,12 @@ ahc_eisa_match(parent, match, aux)
/* must match one of our known ID strings */
if (strcmp(ea->ea_idstring, "ADP7770") &&
strcmp(ea->ea_idstring, "ADP7771") &&
strcmp(ea->ea_idstring, "ADP7756") && /* XXX - not EISA, but VL */
strcmp(ea->ea_idstring, "ADP7757")) /* XXX - not EISA, but VL */
strcmp(ea->ea_idstring, "ADP7771")
#if 0
&& strcmp(ea->ea_idstring, "ADP7756") /* not EISA, but VL */
&& strcmp(ea->ea_idstring, "ADP7757") /* not EISA, but VL */
#endif
)
return (0);
if (bus_io_map(bc, EISA_SLOT_ADDR(ea->ea_slot) + AHC_EISA_SLOT_OFFSET,
@ -349,12 +352,14 @@ ahc_eisa_attach(parent, self, aux)
} else if (strcmp(ea->ea_idstring, "ADP7771") == 0) {
model = EISA_PRODUCT_ADP7771;
type = AHC_274;
#if 0
} else if (strcmp(ea->ea_idstring, "ADP7756") == 0) {
model = EISA_PRODUCT_ADP7756;
type = AHC_284;
} else if (strcmp(ea->ea_idstring, "ADP7757") == 0) {
model = EISA_PRODUCT_ADP7757;
type = AHC_284;
#endif
} else {
panic("ahc_eisa_attach: Unknown device type %s\n",
ea->ea_idstring);

View File

@ -1,4 +1,4 @@
# $NetBSD: files.eisa,v 1.10 1996/05/20 00:44:11 thorpej Exp $
# $NetBSD: files.eisa,v 1.11 1996/08/05 21:18:57 soda Exp $
#
# Config.new file and device description for machine-independent EISA code.
# Included by ports that need it. Requires that the SCSI files be
@ -13,7 +13,7 @@ device ahb: scsi
attach ahb at eisa
file dev/eisa/aha1742.c ahb
# Adaptec AHA-27/284X and aic7770 motherboard SCSI controllers
# Adaptec AHA-274x and aic7770 motherboard SCSI controllers
# device declaration in sys/conf/files
attach ahc at eisa with ahc_eisa
file dev/eisa/ahc_eisa.c ahc_eisa