Module Name:    src
Committed By:   cegger
Date:           Tue May 12 13:19:50 UTC 2009

Modified Files:
        src/sys/dev/raidframe: rf_netbsdkintf.c

Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.261 -r1.262 src/sys/dev/raidframe/rf_netbsdkintf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/raidframe/rf_netbsdkintf.c
diff -u src/sys/dev/raidframe/rf_netbsdkintf.c:1.261 src/sys/dev/raidframe/rf_netbsdkintf.c:1.262
--- src/sys/dev/raidframe/rf_netbsdkintf.c:1.261	Fri May  1 20:43:41 2009
+++ src/sys/dev/raidframe/rf_netbsdkintf.c	Tue May 12 13:19:50 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: rf_netbsdkintf.c,v 1.261 2009/05/01 20:43:41 dyoung Exp $	*/
+/*	$NetBSD: rf_netbsdkintf.c,v 1.262 2009/05/12 13:19:50 cegger Exp $	*/
 /*-
  * Copyright (c) 1996, 1997, 1998, 2008 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -139,7 +139,7 @@
  ***********************************************************/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.261 2009/05/01 20:43:41 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.262 2009/05/12 13:19:50 cegger Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -797,7 +797,7 @@
 raidclose(dev_t dev, int flags, int fmt, struct lwp *l)
 {
 	int     unit = raidunit(dev);
-	struct cfdata *cf;
+	cfdata_t cf;
 	struct raid_softc *rs;
 	int     error = 0;
 	int     part;
@@ -970,7 +970,7 @@
 	int     unit = raidunit(dev);
 	int     error = 0;
 	int     part, pmask;
-	struct cfdata *cf;
+	cfdata_t cf;
 	struct raid_softc *rs;
 	RF_Config_t *k_cfg, *u_cfg;
 	RF_Raid_t *raidPtr;
@@ -1842,7 +1842,7 @@
 static void
 raidinit(RF_Raid_t *raidPtr)
 {
-	struct cfdata *cf;
+	cfdata_t cf;
 	struct raid_softc *rs;
 	int     unit;
 

Reply via email to