diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-03-03 12:15:54 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-03-03 12:15:54 +0000 |
commit | 7ac40f5f59dea6e9ab4869e974bdd4026274e921 (patch) | |
tree | 4e91d5779ffebe1d75e975aa4450f35f965430eb /sys/netsmb | |
parent | 03f5c0014428be25ffe752865c2a06b1c2cd9347 (diff) | |
download | src-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/netsmb')
-rw-r--r-- | sys/netsmb/smb_dev.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/sys/netsmb/smb_dev.c b/sys/netsmb/smb_dev.c index 3ee11d2b3633..a22507cd5ea3 100644 --- a/sys/netsmb/smb_dev.c +++ b/sys/netsmb/smb_dev.c @@ -85,19 +85,11 @@ int smb_dev_queue(struct smb_dev *ndp, struct smb_rq *rqp, int prio); */ static struct cdevsw nsmb_cdevsw = { - /* open */ nsmb_dev_open, - /* close */ nsmb_dev_close, - /* read */ noread, - /* write */ nowrite, - /* ioctl */ nsmb_dev_ioctl, - /* poll */ nopoll, - /* mmap */ nommap, - /* strategy */ nostrategy, - /* name */ NSMB_NAME, - /* maj */ NSMB_MAJOR, - /* dump */ nodump, - /* psize */ nopsize, - /* flags */ 0, + .d_open = nsmb_dev_open, + .d_close = nsmb_dev_close, + .d_ioctl = nsmb_dev_ioctl, + .d_name = NSMB_NAME, + .d_maj = NSMB_MAJOR, #ifndef FB_CURRENT /* bmaj */ -1 #endif |