diff options
author | phk <phk@FreeBSD.org> | 1999-05-09 13:00:50 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-05-09 13:00:50 +0000 |
commit | e05bc3b49a62c15237c5647caa75821e3355e91d (patch) | |
tree | c5c673ce4e60f5ce4f05e870c615d1b9f1150619 /sys/i386/apm | |
parent | 7d04d621267e45d230142f9f342d01744819ec08 (diff) | |
download | FreeBSD-src-e05bc3b49a62c15237c5647caa75821e3355e91d.zip FreeBSD-src-e05bc3b49a62c15237c5647caa75821e3355e91d.tar.gz |
Unconfuse DEV_MODULE() and DEV_DRIVER_MODULE() about the difference between
a major number for a dev_t.
Diffstat (limited to 'sys/i386/apm')
-rw-r--r-- | sys/i386/apm/apm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/apm/apm.c b/sys/i386/apm/apm.c index 8f5b5ad..5b3ea19 100644 --- a/sys/i386/apm/apm.c +++ b/sys/i386/apm/apm.c @@ -15,7 +15,7 @@ * * Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id: apm.c,v 1.83 1999/05/08 21:59:13 dfr Exp $ + * $Id: apm.c,v 1.84 1999/05/09 04:58:13 yokota Exp $ */ #include "opt_devfs.h" @@ -1065,4 +1065,4 @@ static driver_t apm_driver = { static devclass_t apm_devclass; DEV_DRIVER_MODULE(apm, nexus, apm_driver, apm_devclass, - CDEV_MAJOR, NODEV, apm_cdevsw, 0, 0); + CDEV_MAJOR, NOMAJ, apm_cdevsw, 0, 0); |