diff options
author | phk <phk@FreeBSD.org> | 2003-03-02 18:51:46 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-03-02 18:51:46 +0000 |
commit | 9dc0ca16507608ab00871bb805a4f76b013e8e50 (patch) | |
tree | afd429f10d9020b231bb670201e9082aa3c82c10 /sys/dev/raidframe | |
parent | 2a2408d4ea73484842467ce7dd281478e2a8a7ee (diff) | |
download | FreeBSD-src-9dc0ca16507608ab00871bb805a4f76b013e8e50.zip FreeBSD-src-9dc0ca16507608ab00871bb805a4f76b013e8e50.tar.gz |
Use canonical format for cdevsw initialization.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r-- | sys/dev/raidframe/rf_freebsdkintf.c | 26 |
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, }; /* |