diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-02-21 19:42:58 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-02-21 19:42:58 +0000 |
commit | c9c7976f7ffdd0ed81e12d8930651a9a858defa1 (patch) | |
tree | c4705f5f800de96d25d8356b2711c664dabcd41e /sys/i386/isa/mse.c | |
parent | 7563a29b8566c3c862a995022e62a54b6c3faa6b (diff) |
Device megapatch 1/6:
Free approx 86 major numbers with a mostly automatically generated patch.
A number of strategic drivers have been left behind by caution, and a few
because they still (ab)use their major number.
Notes
Notes:
svn path=/head/; revision=126076
Diffstat (limited to 'sys/i386/isa/mse.c')
-rw-r--r-- | sys/i386/isa/mse.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/i386/isa/mse.c b/sys/i386/isa/mse.c index 408bbf77c0b0..b2c821b59154 100644 --- a/sys/i386/isa/mse.c +++ b/sys/i386/isa/mse.c @@ -139,7 +139,6 @@ static d_read_t mseread; static d_ioctl_t mseioctl; static d_poll_t msepoll; -#define CDEV_MAJOR 27 static struct cdevsw mse_cdevsw = { .d_open = mseopen, .d_close = mseclose, @@ -147,7 +146,6 @@ static struct cdevsw mse_cdevsw = { .d_ioctl = mseioctl, .d_poll = msepoll, .d_name = "mse", - .d_maj = CDEV_MAJOR, }; static void mseintr(void *); |