From owner-cvs-src@FreeBSD.ORG Tue Dec 20 21:12:26 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB97316A41F; Tue, 20 Dec 2005 21:12:26 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9150043D5E; Tue, 20 Dec 2005 21:12:26 +0000 (GMT) (envelope-from jhb@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 jBKLCQ7U035651; Tue, 20 Dec 2005 21:12:26 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBKLCQa8035650; Tue, 20 Dec 2005 21:12:26 GMT (envelope-from jhb) Message-Id: <200512202112.jBKLCQa8035650@repoman.freebsd.org> From: John Baldwin Date: Tue, 20 Dec 2005 21:12:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/pci agp_ali.c agp_amd.c agp_amd64.c agp_ati.c agp_intel.c agp_nvidia.c agp_sis.c agp_via.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Dec 2005 21:12:26 -0000 jhb 2005-12-20 21:12:26 UTC FreeBSD src repository Modified files: sys/pci agp_ali.c agp_amd.c agp_amd64.c agp_ati.c agp_intel.c agp_nvidia.c agp_sis.c agp_via.c Log: Change the various AGP drivers that attach to the Host-PCI bridge device to attach to the hostb driver instead. This means that agp can now be loaded at runtime (in theory at least). Also, the drivers no longer have to explicity call device_verbose() to cancel out any earlier calls to device_quiet() by the hostb(4) driver (this shows a limitation in new-bus, drivers really shouldn't be doing device_quiet() until they know they are going to drive that device, i.e. in attach). Revision Changes Path 1.18 +1 -2 src/sys/pci/agp_ali.c 1.23 +1 -2 src/sys/pci/agp_amd.c 1.10 +1 -2 src/sys/pci/agp_amd64.c 1.2 +1 -2 src/sys/pci/agp_ati.c 1.29 +1 -2 src/sys/pci/agp_intel.c 1.11 +1 -2 src/sys/pci/agp_nvidia.c 1.19 +1 -2 src/sys/pci/agp_sis.c 1.23 +1 -2 src/sys/pci/agp_via.c