diff options
author | phk <phk@FreeBSD.org> | 1999-08-23 20:59:21 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-08-23 20:59:21 +0000 |
commit | 663cbe4fc26065f7af7d10faaee492a626156145 (patch) | |
tree | 32e619fadb473bfb85ff8e06044176f2ff323cce /sys/i386/isa/ctx.c | |
parent | 2a5ff1f726f814a9e4717afe3f14250f8030cace (diff) | |
download | FreeBSD-src-663cbe4fc26065f7af7d10faaee492a626156145.zip FreeBSD-src-663cbe4fc26065f7af7d10faaee492a626156145.tar.gz |
Convert DEVFS hooks in (most) drivers to make_dev().
Diskslice/label code not yet handled.
Vinum, i4b, alpha, pc98 not dealt with (left to respective Maintainers)
Add the correct hook for devfs to kern_conf.c
The net result of this excercise is that a lot less files depends on DEVFS,
and devtoname() gets more sensible output in many cases.
A few drivers had minor additional cleanups performed relating to cdevsw
registration.
A few drivers don't register a cdevsw{} anymore, but only use make_dev().
Diffstat (limited to 'sys/i386/isa/ctx.c')
-rw-r--r-- | sys/i386/isa/ctx.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/sys/i386/isa/ctx.c b/sys/i386/isa/ctx.c index 0fc5f1e..d3bda19 100644 --- a/sys/i386/isa/ctx.c +++ b/sys/i386/isa/ctx.c @@ -8,7 +8,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: ctx.c,v 1.31 1999/05/30 16:52:09 phk Exp $ + * $Id: ctx.c,v 1.32 1999/05/31 11:25:54 phk Exp $ */ /* @@ -111,18 +111,12 @@ #include "ctx.h" #if NCTX > 0 -#include "opt_devfs.h" - #include <sys/param.h> #include <sys/systm.h> #include <sys/conf.h> #include <sys/uio.h> #include <sys/kernel.h> #include <sys/malloc.h> -#ifdef DEVFS -#include <sys/devfsext.h> -#endif /*DEVFS*/ - #include <i386/isa/isa_device.h> #include <i386/isa/ctxreg.h> #include <machine/ioctl_ctx.h> @@ -184,7 +178,6 @@ static struct ctx_soft_registers { int iobase; caddr_t maddr; int msize; - void *devfs_token; } ctx_sr[NCTX]; @@ -216,11 +209,7 @@ ctxattach(struct isa_device * devp) sr->iobase = devp->id_iobase; sr->maddr = devp->id_maddr; sr->msize = devp->id_msize; -#ifdef DEVFS - sr->devfs_token = - devfs_add_devswf(&ctx_cdevsw, 0, DV_CHR, 0, 0, 0600, - "ctx%d", devp->id_unit); -#endif /* DEVFS */ + make_dev(&ctx_cdevsw, 0, 0, 0, 0600, "ctx%d", devp->id_unit); return (1); } |