summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorleo <leo@NetBSD.org>2002-05-23 15:03:33 +0000
committerleo <leo@NetBSD.org>2002-05-23 15:03:33 +0000
commit2ac118b51fa42ce7f9b3a88a49d0dcc466e89beb (patch)
tree99fa25e4bc3221cbdbd5a5e761ff837b120a2c06 /sys/dev/raidframe
parent65dd34362f4ccf55f06bd9f77a390d6c0f1c6c46 (diff)
Treat the "hdfd" (Atari/Hades floppy) like all the other "fd"s. OK-ed by
Greg Oster.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_netbsdkintf.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c
index f8256b2444f..fc4427d6690 100644
--- a/sys/dev/raidframe/rf_netbsdkintf.c
+++ b/sys/dev/raidframe/rf_netbsdkintf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_netbsdkintf.c,v 1.118 2002/05/22 15:40:50 wiz Exp $ */
+/* $NetBSD: rf_netbsdkintf.c,v 1.119 2002/05/23 15:03:33 leo Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -114,7 +114,7 @@
***********************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.118 2002/05/22 15:40:50 wiz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.119 2002/05/23 15:03:33 leo Exp $");
#include <sys/param.h>
#include <sys/errno.h>
@@ -2684,6 +2684,9 @@ rf_find_raid_components()
if (!strcmp(dv->dv_cfdata->cf_driver->cd_name,"fd")) {
continue;
}
+ if (!strcmp(dv->dv_cfdata->cf_driver->cd_name,"hdfd")) {
+ continue;
+ }
/* need to find the device_name_to_block_device_major stuff */
cd_name = dv->dv_cfdata->cf_driver->cd_name;