From patchwork Sun Aug 5 23:03:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anton Vorontsov X-Patchwork-Id: 10494 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 10BBE24048 for ; Sun, 5 Aug 2012 23:08:33 +0000 (UTC) Received: from mail-yw0-f52.google.com (mail-yw0-f52.google.com [209.85.213.52]) by fiordland.canonical.com (Postfix) with ESMTP id D441CA18C3C for ; Sun, 5 Aug 2012 23:08:32 +0000 (UTC) Received: by yhpp61 with SMTP id p61so120813yhp.11 for ; Sun, 05 Aug 2012 16:08:32 -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=G7XN4s/gEhqR55T4bvMwJh5bDHiwGXhe+00dFro2lMY=; b=Qr0gAnD0Z1rvY2JYwu0leK8uVApFSln8NxbMGBXTt8bkhvVpJ436cK2H7JXLItFsow r2CTp4s/IBq1/v0vencYs9ZXWmxEMeaaaR8eT6btX3KLo3/JicXXDZBWlRv5AHd1BC3A udwJyQloEL3fan9mJPH36bNjlsRz2dqwC36zRT7GQ+JcGoYev9w3h15bT6WY9b76aNgT HeqU+6dwpJSQfJqN81pMWXO9ZMw0OzUL6vxhgOASqdN6hkauJ1UHf5o4sLm87/0WsDRh 6FMKOqm8hP9ybkDXW+m9Y+CHnwGxgEnNisvoDXju6ary2uyCdzPqPmtw/+XidPbj4Exu OMFA== Received: by 10.43.46.194 with SMTP id up2mr7835189icb.22.1344208111951; Sun, 05 Aug 2012 16:08:31 -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.87.40 with SMTP id u8csp412176igz; Sun, 5 Aug 2012 16:08:31 -0700 (PDT) Received: by 10.68.200.162 with SMTP id jt2mr14449798pbc.54.1344208111454; Sun, 05 Aug 2012 16:08:31 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id rd4si9439834pbc.190.2012.08.05.16.08.31 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 05 Aug 2012 16:08:31 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of anton.vorontsov@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.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-pb0-f50.google.com with SMTP id md12so3221727pbc.37 for ; Sun, 05 Aug 2012 16:08:31 -0700 (PDT) Received: by 10.68.220.39 with SMTP id pt7mr14808693pbc.40.1344208111187; Sun, 05 Aug 2012 16:08:31 -0700 (PDT) Received: from localhost (m9f0536d0.tmodns.net. [208.54.5.159]) by mx.google.com with ESMTPS id ql6sm7584295pbc.61.2012.08.05.16.08.27 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 05 Aug 2012 16:08:30 -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 7/9] ARM: FIQ: Should include asm/mach/irq.h Date: Sun, 5 Aug 2012 16:03:37 -0700 Message-Id: <1344207819-3415-7-git-send-email-anton.vorontsov@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <20120805230238.GA1663@lizard> References: <20120805230238.GA1663@lizard> X-Gm-Message-State: ALoCoQl5qFxsCfv+Kkd8qhzSENLJtizFyNtau59WWieXHkW2MHC78Lku65OS6TbDtbfGsv4tPLsB 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;