aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mse/mse.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-03-03 12:15:54 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-03-03 12:15:54 +0000
commit7ac40f5f59dea6e9ab4869e974bdd4026274e921 (patch)
tree4e91d5779ffebe1d75e975aa4450f35f965430eb /sys/dev/mse/mse.c
parent03f5c0014428be25ffe752865c2a06b1c2cd9347 (diff)
downloadsrc-7ac40f5f59dea6e9ab4869e974bdd4026274e921.tar.gz
src-7ac40f5f59dea6e9ab4869e974bdd4026274e921.zip
Gigacommit to improve device-driver source compatibility between
branches: Initialize struct cdevsw using C99 sparse initializtion and remove all initializations to default values. This patch is automatically generated and has been tested by compiling LINT with all the fields in struct cdevsw in reverse order on alpha, sparc64 and i386. Approved by: re(scottl)
Notes
Notes: svn path=/head/; revision=111815
Diffstat (limited to 'sys/dev/mse/mse.c')
-rw-r--r--sys/dev/mse/mse.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c
index 17622bd2eae2..57b0e7b1f15c 100644
--- a/sys/dev/mse/mse.c
+++ b/sys/dev/mse/mse.c
@@ -139,19 +139,13 @@ static d_poll_t msepoll;
#define CDEV_MAJOR 27
static struct cdevsw mse_cdevsw = {
- /* open */ mseopen,
- /* close */ mseclose,
- /* read */ mseread,
- /* write */ nowrite,
- /* ioctl */ mseioctl,
- /* poll */ msepoll,
- /* mmap */ nommap,
- /* strategy */ nostrategy,
- /* name */ "mse",
- /* maj */ CDEV_MAJOR,
- /* dump */ nodump,
- /* psize */ nopsize,
- /* flags */ 0,
+ .d_open = mseopen,
+ .d_close = mseclose,
+ .d_read = mseread,
+ .d_ioctl = mseioctl,
+ .d_poll = msepoll,
+ .d_name = "mse",
+ .d_maj = CDEV_MAJOR,
};
static void mseintr(void *);