From 4e2f199e0c9ada1b226f685a848abb1420a1ff8f Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sun, 30 May 1999 16:53:49 +0000 Subject: This commit should be a extensive NO-OP: Reformat and initialize correctly all "struct cdevsw". Initialize the d_maj and d_bmaj fields. The d_reset field was not removed, although it is never used. I used a program to do most of this, so all the files now use the same consistent format. Please keep it that way. Vinum and i4b not modified, patches emailed to respective authors. --- sys/i386/bios/apm.c | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) (limited to 'sys/i386/bios/apm.c') diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c index ad3313c0a33c..c8fbf1cf1548 100644 --- a/sys/i386/bios/apm.c +++ b/sys/i386/bios/apm.c @@ -15,7 +15,7 @@ * * Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id: apm.c,v 1.85 1999/05/09 13:00:41 phk Exp $ + * $Id: apm.c,v 1.86 1999/05/11 19:54:03 phk Exp $ */ #include "opt_devfs.h" @@ -88,10 +88,27 @@ static d_close_t apmclose; static d_ioctl_t apmioctl; #define CDEV_MAJOR 39 -static struct cdevsw apm_cdevsw = - { apmopen, apmclose, noread, nowrite, /*39*/ - apmioctl, nostop, nullreset, nodevtotty,/* APM */ - seltrue, nommap, NULL , "apm" ,NULL, -1}; +static struct cdevsw apm_cdevsw = { + /* open */ apmopen, + /* close */ apmclose, + /* read */ noread, + /* write */ nowrite, + /* ioctl */ apmioctl, + /* stop */ nostop, + /* reset */ noreset, + /* devtotty */ nodevtotty, + /* poll */ nopoll, + /* mmap */ nommap, + /* strategy */ nostrategy, + /* name */ "apm", + /* parms */ noparms, + /* maj */ CDEV_MAJOR, + /* dump */ nodump, + /* psize */ nopsize, + /* flags */ 0, + /* maxio */ 0, + /* bmaj */ -1 +}; /* setup APM GDT discriptors */ static void -- cgit v1.2.3