From owner-cvs-all@FreeBSD.ORG Tue Dec 7 05:30:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A08216A4CE; Tue, 7 Dec 2004 05:30:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C0C743D5E; Tue, 7 Dec 2004 05:30:03 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iB75U3u9043700; Tue, 7 Dec 2004 05:30:03 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iB75U3Hn043699; Tue, 7 Dec 2004 05:30:03 GMT (envelope-from imp) Message-Id: <200412070530.iB75U3Hn043699@repoman.freebsd.org> From: Warner Losh Date: Tue, 7 Dec 2004 05:30:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/isa es1888.c src/sys/i386/i386 bios.c src/sys/isa isavar.h src/sys/sparc64/isa isa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2004 05:30:03 -0000 imp 2004-12-07 05:30:02 UTC FreeBSD src repository Modified files: sys/dev/sound/isa es1888.c sys/i386/i386 bios.c sys/isa isavar.h sys/sparc64/isa isa.c Log: PNP BIOS devices are fundamentally different than ISA PNP devices. These devices should be probed first because they are at fixed locations and cannot be turned off. ISA PNP devices, on the other hand, can be turned off and often can be flexible in the resources they use. Probe them last, as always. Revision Changes Path 1.14 +1 -1 src/sys/dev/sound/isa/es1888.c 1.71 +1 -1 src/sys/i386/i386/bios.c 1.27 +10 -9 src/sys/isa/isavar.h 1.15 +1 -1 src/sys/sparc64/isa/isa.c