From owner-svn-src-head@freebsd.org Fri Sep 30 05:30:17 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FC81C031D1; Fri, 30 Sep 2016 05:30:17 +0000 (UTC) (envelope-from mmel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 4240D1D70; Fri, 30 Sep 2016 05:30:17 +0000 (UTC) (envelope-from mmel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8U5UG8V075295; Fri, 30 Sep 2016 05:30:16 GMT (envelope-from mmel@FreeBSD.org) Received: (from mmel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8U5UGEx075294; Fri, 30 Sep 2016 05:30:16 GMT (envelope-from mmel@FreeBSD.org) Message-Id: <201609300530.u8U5UGEx075294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmel set sender to mmel@FreeBSD.org using -f From: Michal Meloun Date: Fri, 30 Sep 2016 05:30:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r306479 - head/sys/arm/allwinner X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Sep 2016 05:30:17 -0000 Author: mmel Date: Fri Sep 30 05:30:16 2016 New Revision: 306479 URL: https://svnweb.freebsd.org/changeset/base/306479 Log: ALLWINNER: ahci_devclass is local variable, don't export it. Modified: head/sys/arm/allwinner/a10_ahci.c Modified: head/sys/arm/allwinner/a10_ahci.c ============================================================================== --- head/sys/arm/allwinner/a10_ahci.c Fri Sep 30 05:28:11 2016 (r306478) +++ head/sys/arm/allwinner/a10_ahci.c Fri Sep 30 05:30:16 2016 (r306479) @@ -373,7 +373,7 @@ ahci_a10_detach(device_t dev) return (ahci_detach(dev)); } -devclass_t ahci_devclass; +static devclass_t ahci_devclass; static device_method_t ahci_ata_methods[] = { DEVMETHOD(device_probe, ahci_a10_probe),