From owner-freebsd-commit Thu Dec 14 14:04:09 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA19225 for freebsd-commit-outgoing; Thu, 14 Dec 1995 14:04:09 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA19131 for cvs-all-outgoing; Thu, 14 Dec 1995 14:03:23 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA19115 for cvs-sys-outgoing; Thu, 14 Dec 1995 14:03:18 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA19103 Thu, 14 Dec 1995 14:03:16 -0800 (PST) Date: Thu, 14 Dec 1995 14:03:16 -0800 (PST) From: Bruce Evans Message-Id: <199512142203.OAA19103@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/sys conf.h Sender: owner-commit@FreeBSD.ORG Precedence: bulk bde 95/12/14 14:03:14 Modified: sys/i386/i386 conf.c sys/i386/isa/pcvt pcvt_drv.c sys/i386/isa syscons.c sys/sys conf.h Log: Removed my devsw access functions [un]register_cdev() and getmajorbyname() which were a better (sigh) temporary interface to the going-away devswitches. Note that SYSINIT()s to initialize the devswitches would be fatal in syscons.c and pcvt_drv.c (and are bogus elsewhere) because they get called independently of whether the device is attached; thus devices that share a major clobber each other's devswitch entries until the last one wins. conf.c: Removed stale #includes and comments. Revision Changes Path 1.116 +4 -115 src/sys/i386/i386/conf.c 1.18 +8 -4 src/sys/i386/isa/pcvt/pcvt_drv.c 1.138 +9 -6 src/sys/i386/isa/syscons.c 1.29 +1 -4 src/sys/sys/conf.h