From owner-cvs-all@FreeBSD.ORG Wed Feb 1 15:45:35 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 38DE716A420; Wed, 1 Feb 2006 15:45:35 +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 A31F243D73; Wed, 1 Feb 2006 15:45:30 +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 k11FjUaX071579; Wed, 1 Feb 2006 15:45:30 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k11FjUrK071578; Wed, 1 Feb 2006 15:45:30 GMT (envelope-from jhb) Message-Id: <200602011545.k11FjUrK071578@repoman.freebsd.org> From: John Baldwin Date: Wed, 1 Feb 2006 15:45:29 +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/dev/pci vga_pci.c src/sys/pci agp_i810.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 01 Feb 2006 15:45:35 -0000 jhb 2006-02-01 15:45:29 UTC FreeBSD src repository Modified files: sys/dev/pci vga_pci.c sys/pci agp_i810.c Log: Don't add an agp child in vgapci's attach routine if the PCIY_AGP capability is present as not all devices supported by the agp_i810 driver (such as i915) have the AGP capability. Instead, add an identify routine to the agp_i810 driver that uses the PCI ID to determine if it should create an agp child device. Revision Changes Path 1.5 +0 -7 src/sys/dev/pci/vga_pci.c 1.35 +10 -0 src/sys/pci/agp_i810.c