summaryrefslogtreecommitdiffstats
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
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 8af232a..754ab51 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,
};
/*
OpenPOWER on IntegriCloud