Finish conversion to new-style isa config machinery (#ifdef DEBUG code was
left unconverted)
This commit is contained in:
parent
4aceab2a3d
commit
3c99883ed4
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: seagate.c,v 1.46 2002/01/12 16:21:07 tsutsui Exp $ */
|
||||
/* $NetBSD: seagate.c,v 1.47 2002/01/28 03:45:25 sommerfeld Exp $ */
|
||||
|
||||
/*
|
||||
* ST01/02, Future Domain TMC-885, TMC-950 SCSI driver
|
||||
|
@ -65,7 +65,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: seagate.c,v 1.46 2002/01/12 16:21:07 tsutsui Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: seagate.c,v 1.47 2002/01/28 03:45:25 sommerfeld Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -370,8 +370,7 @@ seaprobe(parent, match, aux)
|
|||
break;
|
||||
default:
|
||||
#ifdef DEBUG
|
||||
printf("seaprobe: board type unknown at address 0x%x\n",
|
||||
ia->ia_maddr);
|
||||
printf("seaprobe: board type unknown at address 0x%x\n", maddr);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
@ -430,7 +429,7 @@ seaattach(parent, self, aux)
|
|||
default:
|
||||
#ifdef DEBUG
|
||||
printf("%s: board type unknown at address 0x%x\n",
|
||||
sea->sc_dev.dv_xname, ia->ia_maddr);
|
||||
sea->sc_dev.dv_xname, sea->maddr);
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue