Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/dev/raidframe Pull up revision 1.121 (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/55a059be58ce
branches:  netbsd-1-6
changeset: 528286:55a059be58ce
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sat Jun 29 08:30:11 2002 +0000

description:
Pull up revision 1.121 (requested by leo in ticket #395):
Exclude the Atari/Milan floppy driver from being a RAID capable device.

diffstat:

 sys/dev/raidframe/rf_netbsdkintf.c |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (29 lines):

diff -r 0f154d7aa721 -r 55a059be58ce sys/dev/raidframe/rf_netbsdkintf.c
--- a/sys/dev/raidframe/rf_netbsdkintf.c        Sat Jun 29 08:25:34 2002 +0000
+++ b/sys/dev/raidframe/rf_netbsdkintf.c        Sat Jun 29 08:30:11 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rf_netbsdkintf.c,v 1.117.8.1 2002/05/28 11:22:37 lukem Exp $   */
+/*     $NetBSD: rf_netbsdkintf.c,v 1.117.8.2 2002/06/29 08:30:11 lukem 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.117.8.1 2002/05/28 11:22:37 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.117.8.2 2002/06/29 08:30:11 lukem Exp $");
 
 #include <sys/param.h>
 #include <sys/errno.h>
@@ -2688,6 +2688,10 @@
                if (!strcmp(dv->dv_cfdata->cf_driver->cd_name,"hdfd")) {
                        continue;
                }
+               /* fdisa is the Atari/Milan floppy driver */
+               if (!strcmp(dv->dv_cfdata->cf_driver->cd_name,"fdisa")) {
+                       continue;
+               }
                
                /* need to find the device_name_to_block_device_major stuff */
                cd_name = dv->dv_cfdata->cf_driver->cd_name;



Home | Main Index | Thread Index | Old Index