aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/bios/apm.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1999-05-30 16:53:49 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1999-05-30 16:53:49 +0000
commit4e2f199e0c9ada1b226f685a848abb1420a1ff8f (patch)
treec7dba053fd70eed731104c273f0605d351ea65cd /sys/i386/bios/apm.c
parent7a1c7bc99f36d929470a570884dcdacb005fd08f (diff)
downloadsrc-4e2f199e0c9ada1b226f685a848abb1420a1ff8f.tar.gz
src-4e2f199e0c9ada1b226f685a848abb1420a1ff8f.zip
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.
Notes
Notes: svn path=/head/; revision=47625
Diffstat (limited to 'sys/i386/bios/apm.c')
-rw-r--r--sys/i386/bios/apm.c27
1 files changed, 22 insertions, 5 deletions
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