summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-01-21 12:20:54 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-01-21 12:20:54 +0000
commitf907f83cb3dc9719ae13995e5a3d1d302a971ef6 (patch)
tree41f118ddbe1fd712cc76c58274c3c1d01cb1ea48 /sys/dev/raidframe
parent4beeeb807c32f82be0cbea3575a39a581c703b00 (diff)
Remove now unused zeroref member in cfattach structures.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_openbsdkintf.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/dev/raidframe/rf_openbsdkintf.c b/sys/dev/raidframe/rf_openbsdkintf.c
index ad6120913e3..b0393ca867a 100644
--- a/sys/dev/raidframe/rf_openbsdkintf.c
+++ b/sys/dev/raidframe/rf_openbsdkintf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rf_openbsdkintf.c,v 1.31 2005/12/08 05:53:45 tedu Exp $ */
+/* $OpenBSD: rf_openbsdkintf.c,v 1.32 2006/01/21 12:20:51 miod Exp $ */
/* $NetBSD: rf_netbsdkintf.c,v 1.109 2001/07/27 03:30:07 oster Exp $ */
/*-
@@ -238,11 +238,10 @@ int rf_probe(struct device *, void *, void *);
void rf_attach(struct device *, struct device *, void *);
int rf_detach(struct device *, int);
int rf_activate(struct device *, enum devact);
-void rf_zeroref(struct device *);
struct cfattach raid_ca = {
sizeof(struct raid_softc), rf_probe, rf_attach,
- rf_detach, rf_activate, rf_zeroref
+ rf_detach, rf_activate
};
/*
@@ -346,11 +345,6 @@ rf_activate(struct device *self, enum devact act)
}
void
-rf_zeroref(struct device *self)
-{
-}
-
-void
raidattach(int num)
{
int raidID;