Additional fixes to complete the NetBSD/1.1B config changes:
update the old-config to new-config glue used with the 4.4bsd/pmax SCSI drivers to use new device attach declarations and names for the "oldscsibus", "tz" and "rz" drivers.
This commit is contained in:
parent
ffd8d4cdc7
commit
077638548b
|
@ -99,10 +99,14 @@ void noattach __P((struct device *parent, struct device *self, void *aux));
|
|||
|
||||
/* placeholder definitions for new-style scsi bus/disk/tape drivers */
|
||||
|
||||
struct cfdriver oldscsibuscd = {NULL, "", nomatch, noattach, DV_DULL, 0, 0};
|
||||
struct cfattach oldscsibus_ca = { 0, nomatch, noattach };
|
||||
struct cfdriver oldscsibus_cd = {NULL, "", DV_DULL };
|
||||
|
||||
struct cfdriver rzcd = {NULL, "rz", nomatch, noattach, DV_DULL, 0, 0};
|
||||
struct cfdriver tzcd = {NULL, "tz", nomatch, noattach, DV_DULL, 0, 0};
|
||||
struct cfattach rz_ca = { 0, nomatch, noattach };
|
||||
struct cfdriver rz_cd = { NULL, "rz", DV_DULL };
|
||||
|
||||
struct cfattach tz_ca = { 0, nomatch, noattach };
|
||||
struct cfdriver tz_cd = { NULL, "tz", DV_DULL} ;
|
||||
|
||||
|
||||
#define MAX_SCSI 4
|
||||
|
|
Loading…
Reference in New Issue