summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-03-02 18:51:46 +0000
committerphk <phk@FreeBSD.org>2003-03-02 18:51:46 +0000
commit9dc0ca16507608ab00871bb805a4f76b013e8e50 (patch)
treeafd429f10d9020b231bb670201e9082aa3c82c10
parent2a2408d4ea73484842467ce7dd281478e2a8a7ee (diff)
downloadFreeBSD-src-9dc0ca16507608ab00871bb805a4f76b013e8e50.zip
FreeBSD-src-9dc0ca16507608ab00871bb805a4f76b013e8e50.tar.gz
Use canonical format for cdevsw initialization.
-rw-r--r--sys/dev/digi/digi.c28
-rw-r--r--sys/dev/firewire/fwdev.c15
-rw-r--r--sys/dev/raidframe/rf_freebsdkintf.c26
-rw-r--r--sys/dev/twe/twe_freebsd.c26
-rw-r--r--sys/dev/usb/ufm.c17
-rw-r--r--sys/dev/usb/urio.c17
6 files changed, 79 insertions, 50 deletions
diff --git a/sys/dev/digi/digi.c b/sys/dev/digi/digi.c
index 57f6022..ab86ad5 100644
--- a/sys/dev/digi/digi.c
+++ b/sys/dev/digi/digi.c
@@ -143,20 +143,20 @@ const struct digi_control_signals digi_normal_signals = {
};
static struct cdevsw digi_sw = {
- digiopen, /* open */
- digiclose, /* close */
- digiread, /* read */
- digiwrite, /* write */
- digiioctl, /* ioctl */
- ttypoll, /* poll */
- nommap, /* mmap */
- nostrategy, /* strategy */
- driver_name, /* name */
- CDEV_MAJOR, /* maj */
- nodump, /* dump */
- nopsize, /* psize */
- D_TTY | D_KQFILTER, /* flags */
- ttykqfilter /* bmaj */
+ /* open */ digiopen,
+ /* close */ digiclose,
+ /* read */ digiread,
+ /* write */ digiwrite,
+ /* ioctl */ digiioctl,
+ /* poll */ ttypoll,
+ /* mmap */ nommap,
+ /* strategy */ nostrategy,
+ /* name */ driver_name,
+ /* maj */ CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ D_TTY | D_KQFILTER,
+ /* kqfilter */ ttykqfilter
};
static void
diff --git a/sys/dev/firewire/fwdev.c b/sys/dev/firewire/fwdev.c
index 36464ab..35f221c 100644
--- a/sys/dev/firewire/fwdev.c
+++ b/sys/dev/firewire/fwdev.c
@@ -67,8 +67,19 @@ static d_mmap_t fw_mmap;
struct cdevsw firewire_cdevsw =
{
- fw_open, fw_close, fw_read, fw_write, fw_ioctl,
- fw_poll, fw_mmap, nostrategy, "fw", CDEV_MAJOR, nodump, nopsize, D_MEM
+ /* open */ fw_open,
+ /* close */ fw_close,
+ /* read */ fw_read,
+ /* write */ fw_write,
+ /* ioctl */ fw_ioctl,
+ /* poll */ fw_poll,
+ /* mmap */ fw_mmap,
+ /* strategy */ nostrategy,
+ /* name */ "fw",
+ /* maj */ CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ D_MEM
};
static int
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,
};
/*
diff --git a/sys/dev/twe/twe_freebsd.c b/sys/dev/twe/twe_freebsd.c
index 7acdbad..96c9d5a 100644
--- a/sys/dev/twe/twe_freebsd.c
+++ b/sys/dev/twe/twe_freebsd.c
@@ -71,19 +71,19 @@ static d_ioctl_t twe_ioctl_wrapper;
#define TWE_CDEV_MAJOR 146
static struct cdevsw twe_cdevsw = {
- twe_open,
- twe_close,
- noread,
- nowrite,
- twe_ioctl_wrapper,
- nopoll,
- nommap,
- nostrategy,
- "twe",
- TWE_CDEV_MAJOR,
- nodump,
- nopsize,
- 0
+ /* open */ twe_open,
+ /* close */ twe_close,
+ /* read */ noread,
+ /* write */ nowrite,
+ /* ioctl */ twe_ioctl_wrapper,
+ /* poll */ nopoll,
+ /* mmap */ nommap,
+ /* strategy */ nostrategy,
+ /* name */ "twe",
+ /* maj */ TWE_CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ 0
};
/********************************************************************************
diff --git a/sys/dev/usb/ufm.c b/sys/dev/usb/ufm.c
index 5269a8d..42c7a43 100644
--- a/sys/dev/usb/ufm.c
+++ b/sys/dev/usb/ufm.c
@@ -90,10 +90,19 @@ d_ioctl_t ufmioctl;
#define UFM_CDEV_MAJOR MAJOR_AUTO
Static struct cdevsw ufm_cdevsw = {
- ufmopen, ufmclose, noread, nowrite,
- ufmioctl, nopoll, nommap, nostrategy,
- "ufm", UFM_CDEV_MAJOR, nodump, nopsize,
- 0,
+ /* open */ ufmopen,
+ /* close */ ufmclose,
+ /* read */ noread,
+ /* write */ nowrite,
+ /* ioctl */ ufmioctl,
+ /* poll */ nopoll,
+ /* mmap */ nommap,
+ /* strategy */ nostrategy,
+ /* name */ "ufm",
+ /* maj */ UFM_CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ 0,
#if (__FreeBSD_version < 500014)
-1
#endif
diff --git a/sys/dev/usb/urio.c b/sys/dev/usb/urio.c
index ba9ca84..e5f6cc7 100644
--- a/sys/dev/usb/urio.c
+++ b/sys/dev/usb/urio.c
@@ -116,10 +116,19 @@ d_ioctl_t urioioctl;
#define URIO_CDEV_MAJOR 143
Static struct cdevsw urio_cdevsw = {
- urioopen, urioclose, urioread, uriowrite,
- urioioctl, nopoll, nommap, nostrategy,
- "urio", URIO_CDEV_MAJOR,nodump, nopsize,
- 0,
+ /* open */ urioopen,
+ /* close */ urioclose,
+ /* read */ urioread,
+ /* write */ uriowrite,
+ /* ioctl */ urioioctl,
+ /* poll */ nopoll,
+ /* mmap */ nommap,
+ /* strategy */ nostrategy,
+ /* name */ "urio",
+ /* maj */ URIO_CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ 0,
#if __FreeBSD_version < 500014
-1
#endif
OpenPOWER on IntegriCloud