From owner-cvs-all@FreeBSD.ORG Tue Aug 31 20:45:04 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 7883A16A4CF; Tue, 31 Aug 2004 20:45:04 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E5AE43D1D; Tue, 31 Aug 2004 20:45:00 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i7VKgQ09070920; Tue, 31 Aug 2004 14:42:26 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Tue, 31 Aug 2004 14:42:36 -0600 (MDT) Message-Id: <20040831.144236.117916474.imp@bsdimp.com> To: wb@freebie.xs4all.nl From: "M. Warner Losh" In-Reply-To: <20040831203807.GA60718@freebie.xs4all.nl> References: <200408312037.i7VKbARQ075764@repoman.freebsd.org> <20040831203807.GA60718@freebie.xs4all.nl> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/fdc fdc_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, 31 Aug 2004 20:45:04 -0000 In message: <20040831203807.GA60718@freebie.xs4all.nl> Wilko Bulte writes: : On Tue, Aug 31, 2004 at 08:37:10PM +0000, Warner Losh wrote.. : > imp 2004-08-31 20:37:10 UTC : > : > FreeBSD src repository : > : > Modified files: : > sys/dev/fdc fdc_isa.c : > Log: : > When ISA_PNP_PROBE is called, it will return 0 when it finds a device, : > ENOENT when there's no PNP ID for this device node, or ENXIO when there : > is one, but it doesn't match. : > : > In the nonPNP case (as most Alpha systems appear to be), we were : : I think no Alpha has PNP. Makes sense. The Floppy controller usually shows up in the PNP BIOS or ACPI tables. I do believe that Alpha supports the ISA PNP, however, for add-in cards. We map both PNP BIOS and ISA PNP into the same thing (which is probed with ISA_PNP_PROBE). Warner