From 95e4359c8eeb5f4679bc20a182e99c80274f45db Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sun, 2 Mar 2003 18:51:46 +0000 Subject: Use canonical format for cdevsw initialization. --- sys/dev/raidframe/rf_freebsdkintf.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'sys/dev/raidframe') 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, }; /* -- cgit v1.3