summaryrefslogtreecommitdiffstats
path: root/sys/dev/tdfx/tdfx_pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/tdfx/tdfx_pci.c')
-rw-r--r--sys/dev/tdfx/tdfx_pci.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/sys/dev/tdfx/tdfx_pci.c b/sys/dev/tdfx/tdfx_pci.c
index b8bd39a..6349751 100644
--- a/sys/dev/tdfx/tdfx_pci.c
+++ b/sys/dev/tdfx/tdfx_pci.c
@@ -103,19 +103,12 @@ LINUX_IOCTL_SET(tdfx, LINUX_IOCTL_TDFX_MIN, LINUX_IOCTL_TDFX_MAX);
/* Char. Dev. file operations structure */
static struct cdevsw tdfx_cdev = {
- /* open */ tdfx_open,
- /* close */ tdfx_close,
- /* read */ noread,
- /* write */ nowrite,
- /* ioctl */ tdfx_ioctl,
- /* poll */ nopoll,
- /* mmap */ tdfx_mmap,
- /* strategy */ nostrategy,
- /* name */ "tdfx",
- /* maj */ CDEV_MAJOR,
- /* dump */ nodump,
- /* psize */ nopsize,
- /* flags */ 0,
+ .d_open = tdfx_open,
+ .d_close = tdfx_close,
+ .d_ioctl = tdfx_ioctl,
+ .d_mmap = tdfx_mmap,
+ .d_name = "tdfx",
+ .d_maj = CDEV_MAJOR,
};
static int
OpenPOWER on IntegriCloud