From owner-cvs-src-old@FreeBSD.ORG Wed Dec 30 20:47:39 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE1B3106568F for ; Wed, 30 Dec 2009 20:47:39 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BB1A88FC0C for ; Wed, 30 Dec 2009 20:47:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nBUKldlB040332 for ; Wed, 30 Dec 2009 20:47:39 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nBUKldHg040331 for cvs-src-old@freebsd.org; Wed, 30 Dec 2009 20:47:39 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <200912302047.nBUKldHg040331@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Wed, 30 Dec 2009 20:47:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cardbus cardbus_cis.c src/sys/dev/pci pci.c pci_private.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Dec 2009 20:47:39 -0000 jhb 2009-12-30 20:47:14 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus_cis.c sys/dev/pci pci.c pci_private.h Log: SVN rev 201279 on 2009-12-30 20:47:14Z by jhb Teach the PCI bus driver to handle PCIR_BIOS BARs properly and remove special handling for the PCIR_BIOS decoding enable bit from the cardbus driver. The PCIR_BIOS BAR does include type bits like other BARs. Instead, it is always a 32-bit non-prefetchable memory BAR where the low bit is used as a flag to enable decoding. Reviewed by: imp Revision Changes Path 1.68 +0 -6 src/sys/dev/cardbus/cardbus_cis.c 1.394 +79 -4 src/sys/dev/pci/pci.c 1.28 +2 -0 src/sys/dev/pci/pci_private.h