summaryrefslogtreecommitdiffstats
path: root/sys/dev/joy/joy.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/joy/joy.c')
-rw-r--r--sys/dev/joy/joy.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/sys/dev/joy/joy.c b/sys/dev/joy/joy.c
index c00b811..cc61edf 100644
--- a/sys/dev/joy/joy.c
+++ b/sys/dev/joy/joy.c
@@ -68,19 +68,12 @@ static d_read_t joyread;
static d_ioctl_t joyioctl;
static struct cdevsw joy_cdevsw = {
- /* open */ joyopen,
- /* close */ joyclose,
- /* read */ joyread,
- /* write */ nowrite,
- /* ioctl */ joyioctl,
- /* poll */ nopoll,
- /* mmap */ nommap,
- /* strategy */ nostrategy,
- /* name */ "joy",
- /* maj */ CDEV_MAJOR,
- /* dump */ nodump,
- /* psize */ nopsize,
- /* flags */ 0,
+ .d_open = joyopen,
+ .d_close = joyclose,
+ .d_read = joyread,
+ .d_ioctl = joyioctl,
+ .d_name = "joy",
+ .d_maj = CDEV_MAJOR,
};
devclass_t joy_devclass;
OpenPOWER on IntegriCloud