summaryrefslogtreecommitdiffstats
path: root/sys/isa/fd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/isa/fd.c')
-rw-r--r--sys/isa/fd.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/sys/isa/fd.c b/sys/isa/fd.c
index 9173564..bb2cc86 100644
--- a/sys/isa/fd.c
+++ b/sys/isa/fd.c
@@ -477,19 +477,15 @@ fdin_rd(fdc_p fdc)
#define CDEV_MAJOR 9
static struct cdevsw fd_cdevsw = {
- /* open */ Fdopen,
- /* close */ fdclose,
- /* read */ physread,
- /* write */ physwrite,
- /* ioctl */ fdioctl,
- /* poll */ nopoll,
- /* mmap */ nommap,
- /* strategy */ fdstrategy,
- /* name */ "fd",
- /* maj */ CDEV_MAJOR,
- /* dump */ nodump,
- /* psize */ nopsize,
- /* flags */ D_DISK,
+ .d_open = Fdopen,
+ .d_close = fdclose,
+ .d_read = physread,
+ .d_write = physwrite,
+ .d_ioctl = fdioctl,
+ .d_strategy = fdstrategy,
+ .d_name = "fd",
+ .d_maj = CDEV_MAJOR,
+ .d_flags = D_DISK,
};
/*
OpenPOWER on IntegriCloud