From patchwork Fri Oct 26 17:29:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Constantine Shulyupin X-Patchwork-Id: 1652931 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 80CFC40135 for ; Fri, 26 Oct 2012 17:32:05 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TRnjn-0001AA-Ke; Fri, 26 Oct 2012 17:30:27 +0000 Received: from oproxy12-pub.bluehost.com ([50.87.16.10]) by merlin.infradead.org with smtp (Exim 4.76 #1 (Red Hat Linux)) id 1TRnjh-00016V-PH for linux-arm-kernel@lists.infradead.org; Fri, 26 Oct 2012 17:30:23 +0000 Received: (qmail 690 invoked by uid 0); 26 Oct 2012 17:29:56 -0000 Received: from unknown (HELO box668.bluehost.com) (66.147.244.168) by oproxy12.bluehost.com with SMTP; 26 Oct 2012 17:29:56 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=makelinux.com; s=default; h=CC:Message-Id:Date:Subject:Cc:To:From; bh=WxB8GSEUHzewshs+bmUpkhlBspqoDrtdGL3mltRcIY0=; b=V0ZPvFOSMUAnf2IUjr9EXKMduHpx2f8VPnMIfWLliOGI5yC9rAaB7Urvj6GMAk3e7c1MAbULraszV6DwQJUpdqF97kFGoue+FTVxPUwhUk9EhIWQZMVLU6ocAw4pEBqq; Received: from [84.229.179.154] (port=57331 helo=makelinux.home) by box668.bluehost.com with esmtpa (Exim 4.76) (envelope-from ) id 1TRnjG-0005Hv-8n; Fri, 26 Oct 2012 11:29:55 -0600 From: Constantine Shulyupin To: Subject: [PATCH] ARM: OMAP2+: remove duplicated declaration of omap4430_init_late Date: Fri, 26 Oct 2012 19:29:49 +0200 Message-Id: <1351272589-9885-1-git-send-email-const@MakeLinux.com> X-Mailer: git-send-email 1.7.9.5 X-Identified-User: {1470:box668.bluehost.com:makelinu:makelinux.net} {sentby:smtp auth 84.229.179.154 authed with poster@makelinux.net} X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.8 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.8 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [50.87.16.10 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid 0.0 T_DKIM_INVALID DKIM-Signature header exists but is not valid Cc: Russell King , Tony Lindgren , linux-kernel@vger.kernel.org, Constantine Shulyupin , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Constantine Shulyupin Problem: Function omap4430_init_late is declared twice in arch/arm/mach-omap2/common.h. Fix: remove out of order declaration, assuming all functions ordered accordingly processor number. Signed-off-by: Constantine Shulyupin --- arch/arm/mach-omap2/common.h | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h index 7045e4d..45478d1 100644 --- a/arch/arm/mach-omap2/common.h +++ b/arch/arm/mach-omap2/common.h @@ -152,7 +152,6 @@ void am33xx_init_early(void); void omap4430_init_early(void); void omap5_init_early(void); void omap3_init_late(void); /* Do not use this one */ -void omap4430_init_late(void); void omap2420_init_late(void); void omap2430_init_late(void); void omap3430_init_late(void);