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/cam/scsi/scsi_ses.c | |
parent | 03f5c0014428be25ffe752865c2a06b1c2cd9347 (diff) |
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/cam/scsi/scsi_ses.c')
-rw-r--r-- | sys/cam/scsi/scsi_ses.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/sys/cam/scsi/scsi_ses.c b/sys/cam/scsi/scsi_ses.c index 096c08bd245a..fcdb4507513f 100644 --- a/sys/cam/scsi/scsi_ses.c +++ b/sys/cam/scsi/scsi_ses.c @@ -176,19 +176,11 @@ PERIPHDRIVER_DECLARE(ses, sesdriver); static struct cdevsw ses_cdevsw = { - /* open */ sesopen, - /* close */ sesclose, - /* read */ noread, - /* write */ nowrite, - /* ioctl */ sesioctl, - /* poll */ nopoll, - /* mmap */ nommap, - /* strategy */ nostrategy, - /* name */ "ses", - /* maj */ SES_CDEV_MAJOR, - /* dump */ nodump, - /* psize */ nopsize, - /* flags */ 0, + .d_open = sesopen, + .d_close = sesclose, + .d_ioctl = sesioctl, + .d_name = "ses", + .d_maj = SES_CDEV_MAJOR, }; static void |