From owner-svn-src-all@FreeBSD.ORG Fri Aug 6 07:03:23 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03C361065674; Fri, 6 Aug 2010 07:03:23 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E669B8FC18; Fri, 6 Aug 2010 07:03:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o7673MYD039194; Fri, 6 Aug 2010 07:03:22 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o7673MOs039192; Fri, 6 Aug 2010 07:03:22 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201008060703.o7673MOs039192@svn.freebsd.org> From: Neel Natu Date: Fri, 6 Aug 2010 07:03:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r210913 - head/sys/mips/sibyte X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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, 06 Aug 2010 07:03:23 -0000 Author: neel Date: Fri Aug 6 07:03:22 2010 New Revision: 210913 URL: http://svn.freebsd.org/changeset/base/210913 Log: Remove redundant declaration of 'pcib_driver' class from sb_zbpci.c. This causes a compilation error. The declaration is provided by sys/dev/pci/pcib_private.h starting from r210864. Modified: head/sys/mips/sibyte/sb_zbpci.c Modified: head/sys/mips/sibyte/sb_zbpci.c ============================================================================== --- head/sys/mips/sibyte/sb_zbpci.c Fri Aug 6 06:04:27 2010 (r210912) +++ head/sys/mips/sibyte/sb_zbpci.c Fri Aug 6 07:03:22 2010 (r210913) @@ -457,7 +457,6 @@ static device_method_t zbpci_methods[] = * consider drivers belonging to the "pcib" when probing children of * "zbpci". */ -DECLARE_CLASS(pcib_driver); DEFINE_CLASS_1(zbpci, zbpci_driver, zbpci_methods, 0, pcib_driver); static devclass_t zbpci_devclass;