diff options
author | kato <kato@FreeBSD.org> | 1998-07-13 09:29:25 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-07-13 09:29:25 +0000 |
commit | 8b9760c8843815ead46a252ff5760ee566fa9f0e (patch) | |
tree | 3db42b8fd87c5958e47aa3826ecaa8ab07547410 /sys/pc98/cbus | |
parent | 1dc298263b8472c42f06ae8d53d88b88d443c895 (diff) | |
download | FreeBSD-src-8b9760c8843815ead46a252ff5760ee566fa9f0e.zip FreeBSD-src-8b9760c8843815ead46a252ff5760ee566fa9f0e.tar.gz |
Sync with sys/i386/isa/fd.c and wd.c revisions 1.117 and 1.172,
respectively.
Diffstat (limited to 'sys/pc98/cbus')
-rw-r--r-- | sys/pc98/cbus/fdc.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/pc98/cbus/fdc.c b/sys/pc98/cbus/fdc.c index 5fed486..4576db6 100644 --- a/sys/pc98/cbus/fdc.c +++ b/sys/pc98/cbus/fdc.c @@ -43,7 +43,7 @@ * SUCH DAMAGE. * * from: @(#)fd.c 7.4 (Berkeley) 5/25/91 - * $Id: fd.c,v 1.33 1998/07/06 10:09:37 kato Exp $ + * $Id: fd.c,v 1.34 1998/07/11 17:02:07 kato Exp $ * */ @@ -1055,7 +1055,6 @@ fdattach(struct isa_device *dev) &fd->subdevs[0], &fd->subdevs[0].limit, &fd->subdevs[0].slice, - NULL, namebuf); /* Allow full probing */ fd->subdevs[0].slice->probeinfo.typespecific = NULL; @@ -1145,7 +1144,6 @@ fdattach(struct isa_device *dev) &fd->subdevs[i], &fd->subdevs[i].limit, &fd->subdevs[i].slice, - NULL, namebuf); /* Allow full probing */ fd->subdevs[i].slice->probeinfo.typespecific = NULL; @@ -1198,10 +1196,9 @@ fdsinit(void *arg) struct subdev *sd = arg; sh_p tp; - if ((tp = slice_probeall(sd->slice)) != NULL) { - (*tp->constructor)(sd->slice); - } + slice_start_probe(sd->slice); config_intrhook_disestablish(&sd->drive->ich); + DELAY(2000000); /* XXX */ } #endif /* SLICE */ |