summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorcegger <cegger@NetBSD.org>2009-05-12 13:15:24 +0000
committercegger <cegger@NetBSD.org>2009-05-12 13:15:24 +0000
commitd16a259fe36a837cd58c5c1ca2fab778da6e6d6a (patch)
treea5b4d4726c9a66b56f34db05bb77fed57913b7b4 /sys/dev/raidframe
parentb2f181453f04821fb0c353265c7a623123bffeec (diff)
struct cfdata * -> cfdata_t, no functional changes intended.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_netbsdkintf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c
index 7521c7d4979..52e3f9e69da 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.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 @@ int
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 @@ raidioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
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 @@ raidioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
static void
raidinit(RF_Raid_t *raidPtr)
{
- struct cfdata *cf;
+ cfdata_t cf;
struct raid_softc *rs;
int unit;