Autoconf for SCSI stuff on VS4000s.

This commit is contained in:
matt 2000-04-16 16:03:42 +00:00
parent 5fa416e77a
commit ee754e5548

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.c,v 1.46 2000/02/12 15:48:34 ragge Exp $ */
/* $NetBSD: autoconf.c,v 1.47 2000/04/16 16:03:42 matt Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -231,10 +231,17 @@ booted_sd(dev, aux)
return 0; /* Wrong unit */
ppdev = dev->dv_parent->dv_parent;
/* VS3100 NCR 53C80 */
if ((strcmp(ppdev->dv_cfdata->cf_driver->cd_name, "ncr") == 0) &&
(ppdev->dv_unit == B_CONTROLLER(bootdev)))
return 1;
/* VS4000 NCR 53C94 */
if ((strcmp(ppdev->dv_cfdata->cf_driver->cd_name, "asc") == 0) &&
(ppdev->dv_unit == B_CONTROLLER(bootdev)))
return 1;
return 0; /* Where did we come from??? */
}
#endif