From owner-svn-src-all@FreeBSD.ORG Fri Jan 2 08:57:37 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1E99918; Fri, 2 Jan 2015 08:57:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ADEBA66CFF; Fri, 2 Jan 2015 08:57:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t028vbcb086151; Fri, 2 Jan 2015 08:57:37 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t028vbbv086150; Fri, 2 Jan 2015 08:57:37 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <201501020857.t028vbbv086150@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Fri, 2 Jan 2015 08:57:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276531 - head/sys/dev/xen/pci X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2015 08:57:37 -0000 Author: hselasky Date: Fri Jan 2 08:57:36 2015 New Revision: 276531 URL: https://svnweb.freebsd.org/changeset/base/276531 Log: Remove duplicate pci_driver class declaration. Modified: head/sys/dev/xen/pci/xen_pci.c Modified: head/sys/dev/xen/pci/xen_pci.c ============================================================================== --- head/sys/dev/xen/pci/xen_pci.c Fri Jan 2 08:42:44 2015 (r276530) +++ head/sys/dev/xen/pci/xen_pci.c Fri Jan 2 08:57:36 2015 (r276531) @@ -72,7 +72,6 @@ static device_method_t xen_pci_methods[] static devclass_t pci_devclass; -DECLARE_CLASS(pci_driver); DEFINE_CLASS_1(pci, xen_pci_driver, xen_pci_methods, sizeof(struct pci_softc), pci_driver); DRIVER_MODULE(xen_pci, pcib, xen_pci_driver, pci_devclass, 0, 0);