From owner-cvs-src@FreeBSD.ORG Fri Jan 20 22:00:51 2006 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 047E316A41F; Fri, 20 Jan 2006 22:00:51 +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 B31D043D49; Fri, 20 Jan 2006 22:00:50 +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 k0KM0oOR013005; Fri, 20 Jan 2006 22:00:50 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0KM0oGP013004; Fri, 20 Jan 2006 22:00:50 GMT (envelope-from jhb) Message-Id: <200601202200.k0KM0oGP013004@repoman.freebsd.org> From: John Baldwin Date: Fri, 20 Jan 2006 22:00:50 +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/cardbus cardbus.c src/sys/dev/pci pci.c pci_private.h 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: Fri, 20 Jan 2006 22:00:51 -0000 jhb 2006-01-20 22:00:50 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus.c sys/dev/pci pci.c pci_private.h Log: Make the 'pci_devclass' pointer variable private (drivers really shouldn't share devclass pointers, a mistake I've encouraged in the past) and move the declaration of the pci_driver kobj class from cardbus.c to pci_private.h so that other drivers can inherit from pci_driver. Revision Changes Path 1.61 +0 -1 src/sys/dev/cardbus/cardbus.c 1.310 +1 -1 src/sys/dev/pci/pci.c 1.17 +2 -3 src/sys/dev/pci/pci_private.h