summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1994-03-10 21:52:07 +0000
committermycroft <mycroft@NetBSD.org>1994-03-10 21:52:07 +0000
commit390f5990bb0d43aa31520fba3d4d9c30dc592dad (patch)
tree73d7e0ac5125ec3959ce703f946d84c15facf644 /sys/dev
parentdbe6344515a0be3096eefa5a6e227c69716c9bed (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.c4
-rw-r--r--sys/dev/isa/wd.c4
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;
}
/*