aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-03-02 18:51:46 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-03-02 18:51:46 +0000
commit95e4359c8eeb5f4679bc20a182e99c80274f45db (patch)
treeafd429f10d9020b231bb670201e9082aa3c82c10 /sys/dev/raidframe
parentbbaba628724b3e7b5dd84fadd52f438e850ff0a7 (diff)
Notes
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_freebsdkintf.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/dev/raidframe/rf_freebsdkintf.c b/sys/dev/raidframe/rf_freebsdkintf.c
index 8af232a36847f..754ab514f1696 100644
--- a/sys/dev/raidframe/rf_freebsdkintf.c
+++ b/sys/dev/raidframe/rf_freebsdkintf.c
@@ -215,19 +215,19 @@ d_close_t raidctlclose;
d_ioctl_t raidctlioctl;
static struct cdevsw raidctl_cdevsw = {
- raidctlopen,
- raidctlclose,
- noread,
- nowrite,
- raidctlioctl,
- nopoll,
- nommap,
- nostrategy,
- "raidctl",
- 201,
- nodump,
- nopsize,
- 0,
+ /* open */ raidctlopen,
+ /* close */ raidctlclose,
+ /* read */ noread,
+ /* write */ nowrite,
+ /* ioctl */ raidctlioctl,
+ /* poll */ nopoll,
+ /* mmap */ nommap,
+ /* strategy */ nostrategy,
+ /* name */ "raidctl",
+ /* maj */ 201,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ 0,
};
/*