From owner-cvs-all@FreeBSD.ORG Fri Feb 13 10:04:52 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 46A4516A4CE; Fri, 13 Feb 2004 10:04:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A2E943D1D; Fri, 13 Feb 2004 10:04:52 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1DI4qGe011865; Fri, 13 Feb 2004 10:04:52 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1DI4pCN011864; Fri, 13 Feb 2004 10:04:51 -0800 (PST) (envelope-from bde) Message-Id: <200402131804.i1DI4pCN011864@repoman.freebsd.org> From: Bruce Evans Date: Fri, 13 Feb 2004 10:04:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/isa npx.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: Fri, 13 Feb 2004 18:04:52 -0000 bde 2004/02/13 10:04:51 PST FreeBSD src repository Modified files: sys/i386/isa npx.c Log: Fixed a misplaced ifdef that prevented npx.c building without "device isa" ISA. npx has few isa dependencies, but it does unconditional outb()'s to the isa bus in the !SMP case, and it attaches to isa if "device isa" is configured in order to support PNP-ISA. The ifdef for the latter was misplaced. PR: 62595 Revision Changes Path 1.145 +1 -1 src/sys/i386/isa/npx.c