From owner-cvs-all@FreeBSD.ORG Tue Sep 14 07:06:49 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 DB97516A4CE; Tue, 14 Sep 2004 07:06:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A3043D5A; Tue, 14 Sep 2004 07:06:49 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8E76nb2006801; Tue, 14 Sep 2004 07:06:49 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8E76n5O006800; Tue, 14 Sep 2004 07:06:49 GMT (envelope-from imp) Message-Id: <200409140706.i8E76n5O006800@repoman.freebsd.org> From: Warner Losh Date: Tue, 14 Sep 2004 07:06:49 +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/fdc fdc.c fdc_isa.c fdc_pccard.c fdcvar.h 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, 14 Sep 2004 07:06:50 -0000 imp 2004-09-14 07:06:49 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c fdc_isa.c fdc_pccard.c fdcvar.h Log: Checkpoint the fdc resource changes: o Allow for up to 3 resource I/O ranges to be given for the floppy controller, rather than just two that are allowed for now. o Make sure that we can work with either a base address of 0x3f0 or 0x3f2. o Create new inline functions to access the YE DATA's unique BDCR register. o Update pccard attachment to add the fd device. o Do some minor style(9) polishing. # I'm guessing that the fdc pccard attachment broke some time ago, since # there are a number of issues with it still. Revision Changes Path 1.287 +47 -46 src/sys/dev/fdc/fdc.c 1.13 +58 -68 src/sys/dev/fdc/fdc_isa.c 1.10 +10 -4 src/sys/dev/fdc/fdc_pccard.c 1.5 +6 -3 src/sys/dev/fdc/fdcvar.h