From 2ac118b51fa42ce7f9b3a88a49d0dcc466e89beb Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 23 May 2002 15:03:33 +0000 Subject: Treat the "hdfd" (Atari/Hades floppy) like all the other "fd"s. OK-ed by Greg Oster. --- sys/dev/raidframe/rf_netbsdkintf.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sys/dev/raidframe') 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 -__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 #include @@ -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; -- cgit