diff options
| author | mycroft <mycroft@NetBSD.org> | 1994-03-10 21:52:07 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1994-03-10 21:52:07 +0000 |
| commit | 390f5990bb0d43aa31520fba3d4d9c30dc592dad (patch) | |
| tree | 73d7e0ac5125ec3959ce703f946d84c15facf644 /sys/dev | |
| parent | dbe6344515a0be3096eefa5a6e227c69716c9bed (diff) | |
Now that the disk probe routines are actually called, they need to return
something.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ata/wd.c | 4 | ||||
| -rw-r--r-- | sys/dev/isa/wd.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c index 46395095546..86dc26ad690 100644 --- a/sys/dev/ata/wd.c +++ b/sys/dev/ata/wd.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $Id: wd.c,v 1.66 1994/03/10 20:05:32 mycroft Exp $ + * $Id: wd.c,v 1.67 1994/03/10 21:52:10 mycroft Exp $ */ #define INSTRUMENT /* instrumentation stuff by Brad Parker */ @@ -236,6 +236,8 @@ int wdprobe(dev) struct isa_device *dev; { + + return 1; } /* diff --git a/sys/dev/isa/wd.c b/sys/dev/isa/wd.c index 46395095546..86dc26ad690 100644 --- a/sys/dev/isa/wd.c +++ b/sys/dev/isa/wd.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $Id: wd.c,v 1.66 1994/03/10 20:05:32 mycroft Exp $ + * $Id: wd.c,v 1.67 1994/03/10 21:52:10 mycroft Exp $ */ #define INSTRUMENT /* instrumentation stuff by Brad Parker */ @@ -236,6 +236,8 @@ int wdprobe(dev) struct isa_device *dev; { + + return 1; } /* |
