From patchwork Mon Oct 15 21:51:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anton Vorontsov X-Patchwork-Id: 12245 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 7973523EFB for ; Mon, 15 Oct 2012 21:55:01 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id 2AD4EA18395 for ; Mon, 15 Oct 2012 21:55:01 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so8462174iej.11 for ; Mon, 15 Oct 2012 14:55:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=3XtoDnAFhDCgQtctrcussFVTz/5mVxeLERHYEBgMfsg=; b=ID+c6TiMxXLdnc385yRupSD9c3o3Bd1vlECFOhHt2vDTvqivSK8cMSHAHq3S1zCBQF yf+7Z7vsmBMd0gl0mImmZSmWZeCpclltfwjt/JPPsueBLyefrOarbmLVC98aDJ7vnAj4 9VYA5sdC+lQgA4rm62+ob+daQ7vLzHAl/AyIbqMBOK9r8+bff+wT1fHWfrI/4/NPvIyW TXL3pDEiBFP0fD9QYCjZVnghauq/GSV9+XEGpLOQFGd4t1Yu8zQfd0ySIkvT1V97ti18 esEe40O65nIPJTcZlUSH1nLd7KDVmMVBxPq2sLKrmSrEBCIIeu0n5aNtd0AjfEF2/c8C qCgQ== Received: by 10.50.161.169 with SMTP id xt9mr8499877igb.62.1350338100961; Mon, 15 Oct 2012 14:55:00 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp641661igt; Mon, 15 Oct 2012 14:55:00 -0700 (PDT) Received: by 10.66.78.69 with SMTP id z5mr36378775paw.14.1350338100389; Mon, 15 Oct 2012 14:55:00 -0700 (PDT) Received: from mail-pa0-f50.google.com (mail-pa0-f50.google.com [209.85.220.50]) by mx.google.com with ESMTPS id o10si23715875paw.209.2012.10.15.14.55.00 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 15 Oct 2012 14:55:00 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.220.50 is neither permitted nor denied by best guess record for domain of anton.vorontsov@linaro.org) client-ip=209.85.220.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.50 is neither permitted nor denied by best guess record for domain of anton.vorontsov@linaro.org) smtp.mail=anton.vorontsov@linaro.org Received: by mail-pa0-f50.google.com with SMTP id hz11so5827789pad.37 for ; Mon, 15 Oct 2012 14:55:00 -0700 (PDT) Received: by 10.68.190.197 with SMTP id gs5mr41463944pbc.124.1350338100185; Mon, 15 Oct 2012 14:55:00 -0700 (PDT) Received: from localhost (ip-64-134-230-8.public.wayport.net. [64.134.230.8]) by mx.google.com with ESMTPS id uh7sm9625408pbc.35.2012.10.15.14.54.59 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 15 Oct 2012 14:54:59 -0700 (PDT) From: Anton Vorontsov To: Russell King Cc: John Stultz , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linaro-kernel@lists.linaro.org, patches@linaro.org, kernel-team@android.com, Ben Dooks , Kukjin Kim , Sascha Hauer , Tony Lindgren , Mark Brown , Liam Girdwood Subject: [PATCH 07/10] ARM: FIQ: Should include asm/mach/irq.h Date: Mon, 15 Oct 2012 14:51:31 -0700 Message-Id: <1350337894-9744-7-git-send-email-anton.vorontsov@linaro.org> X-Mailer: git-send-email 1.7.12.3 In-Reply-To: <20121015214954.GA3352@lizard> References: <20121015214954.GA3352@lizard> X-Gm-Message-State: ALoCoQkrRQrj2g75elwx7UGHue4ydsceaJOfAxetqRHQEeykO5XbrHRFhZOlTqMqBl/XlJvTwu51 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;