aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bktr
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/bktr
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/bktr')
-rw-r--r--sys/dev/bktr/bktr_os.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/sys/dev/bktr/bktr_os.c b/sys/dev/bktr/bktr_os.c
index 7c7f9a12f685..c088510eb4d2 100644
--- a/sys/dev/bktr/bktr_os.c
+++ b/sys/dev/bktr/bktr_os.c
@@ -247,19 +247,15 @@ static d_poll_t bktr_poll;
#define CDEV_MAJOR 92
static struct cdevsw bktr_cdevsw = {
- /* open */ bktr_open,
- /* close */ bktr_close,
- /* read */ bktr_read,
- /* write */ bktr_write,
- /* ioctl */ bktr_ioctl,
- /* poll */ bktr_poll,
- /* mmap */ bktr_mmap,
- /* strategy */ nostrategy,
- /* name */ "bktr",
- /* maj */ CDEV_MAJOR,
- /* dump */ nodump,
- /* psize */ nopsize,
- /* flags */ 0,
+ .d_open = bktr_open,
+ .d_close = bktr_close,
+ .d_read = bktr_read,
+ .d_write = bktr_write,
+ .d_ioctl = bktr_ioctl,
+ .d_poll = bktr_poll,
+ .d_mmap = bktr_mmap,
+ .d_name = "bktr",
+ .d_maj = CDEV_MAJOR,
};
DRIVER_MODULE(bktr, pci, bktr_driver, bktr_devclass, 0, 0);