diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-03-02 16:50:09 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-03-02 16:50:09 +0000 |
| commit | 715b1e0ab00116f80903f29c1c794097b1dd7374 (patch) | |
| tree | f341410c201254afe033c9e8caa4558eff1a4da7 /sys/dev | |
| parent | 3dc3dda55bff66e655c30b51db424ac8d8c92b39 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ciss/ciss.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index 540627271582..7c238954338c 100644 --- a/sys/dev/ciss/ciss.c +++ b/sys/dev/ciss/ciss.c @@ -217,9 +217,20 @@ static d_ioctl_t ciss_ioctl; #define CISS_CDEV_MAJOR 166 static struct cdevsw ciss_cdevsw = { - ciss_open, ciss_close, noread, nowrite, ciss_ioctl, - nopoll, nommap, nostrategy, "ciss", CISS_CDEV_MAJOR, - nodump, nopsize, 0, nokqfilter + /* open */ ciss_open, + /* close */ ciss_close, + /* read */ noread, + /* write */ nowrite, + /* ioctl */ ciss_ioctl, + /* poll */ nopoll, + /* mmap */ nommap, + /* strategy */ nostrategy, + /* name */ "ciss", + /* maj */ CISS_CDEV_MAJOR, + /* dump */ nodump, + /* psize */ nopsize, + /* flags */ 0, + /* kqfilter */ nokqfilter }; /************************************************************************ |
