From patchwork Fri Nov 23 00:50:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anton Vorontsov X-Patchwork-Id: 1793421 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 D7AF93FC64 for ; Fri, 23 Nov 2012 00:58:31 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TbhY9-000763-6J; Fri, 23 Nov 2012 00:55:21 +0000 Received: from mail-ob0-f177.google.com ([209.85.214.177]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TbhWb-0006TH-2W for linux-arm-kernel@lists.infradead.org; Fri, 23 Nov 2012 00:53:49 +0000 Received: by mail-ob0-f177.google.com with SMTP id eh20so8362162obb.36 for ; Thu, 22 Nov 2012 16:53:44 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=ErBX8i13dNEqP/LnvqU7q3QJdQUxWAajApsCmzkIKVo=; b=KjT29dICTosjDaM81BPoUiyP7eKNz+PcY/VxGpKGOoZuh/OJMegwm1WabuLpuDcSSn xVYekltg86MBs6+1LCvdFLZmBScC+85W4fckt+ftxRYj7lTMoISqSbRjg83G+kCISC+r KF3ZrRJPKj5fZ6Vx+HSze3rdX2AQVxL4zE1TvTuWmnY9B4XAU304fP71G+GABJ4V45oC w6W1OVNi6n59zcc6pebtSi77K6NT/ZilzASwU0RBZQWZscFRaohAfVVRiYuuGfbKWF0O nXf8d7S3ef8KknmtZYFJyYwOmC3OWfp3U3yQewKefmp0nF3Pef6Cg+Z6vTx5ns0mtfuF FsRw== Received: by 10.60.171.133 with SMTP id au5mr1639884oec.90.1353632024848; Thu, 22 Nov 2012 16:53:44 -0800 (PST) Received: from localhost (ip-64-134-239-153.public.wayport.net. [64.134.239.153]) by mx.google.com with ESMTPS id k9sm3535968oeg.6.2012.11.22.16.53.43 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Nov 2012 16:53:44 -0800 (PST) From: Anton Vorontsov To: Andrew Morton Subject: [PATCH 07/10] ARM: FIQ: Should include asm/mach/irq.h Date: Thu, 22 Nov 2012 16:50:00 -0800 Message-Id: <1353631803-4853-7-git-send-email-anton.vorontsov@linaro.org> X-Mailer: git-send-email 1.8.0 In-Reply-To: <20121123003849.GA973@lizard.mcd25758.sjc.wayport.net> References: <20121123003849.GA973@lizard.mcd25758.sjc.wayport.net> X-Gm-Message-State: ALoCoQmBkJJAba2lLZuaGwci8Bbo9qx1SItEsBlkVzuWUHPTtwc4hWICmowgAH1AbgtY5kxojSIa X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121122_195345_244933_B0174851 X-CRM114-Status: GOOD ( 10.65 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.214.177 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linaro-kernel@lists.linaro.org, Russell King , patches@linaro.org, linux-kernel@vger.kernel.org, John Stultz , Jason Wessel , kernel-team@android.com, 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 The patch fixes the following sparse warnings: CHECK arch/arm/kernel/fiq.c arch/arm/kernel/fiq.c:71:6: warning: symbol 'show_fiq_list' was not declared. Should it be static? arch/arm/kernel/fiq.c:129:13: warning: symbol 'init_FIQ' was not declared. Should it be static? Signed-off-by: Anton Vorontsov --- arch/arm/kernel/fiq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/kernel/fiq.c b/arch/arm/kernel/fiq.c index bd369c5..7be2e74 100644 --- a/arch/arm/kernel/fiq.c +++ b/arch/arm/kernel/fiq.c @@ -46,6 +46,7 @@ #include #include #include +#include static unsigned long no_fiq_insn;