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: 1596971 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 7C9173FD9C for ; Mon, 15 Oct 2012 21:58:27 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TNse8-0000Xi-AI; Mon, 15 Oct 2012 21:56:24 +0000 Received: from mail-pa0-f49.google.com ([209.85.220.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TNscm-0008HX-EM for linux-arm-kernel@lists.infradead.org; Mon, 15 Oct 2012 21:55:01 +0000 Received: by mail-pa0-f49.google.com with SMTP id bi5so5498790pad.36 for ; Mon, 15 Oct 2012 14:55:00 -0700 (PDT) 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=3XtoDnAFhDCgQtctrcussFVTz/5mVxeLERHYEBgMfsg=; b=GS7DnTI1Zb0b9HaIWTfH3UO8VXJJBohPxQeg1qMtYBWg3699L+3L4kvcyvhip7b0lF ZWFLVqvPqJ1XQq7gGO0a2/pwgYfKFdikTcVmy1X8xXf7TwwnUYLb5cr50eP6WfnsmxK/ CJLMwxpaEKhU1mI+uusVp/4VBRWJmYVtVtmOTRqAnZ0baD4ph9tSKmvMwrzmapqDJLcg escwpxM8urp4dfc08PgWVn4OikpKg3HpBoqffTjhIsiqnvmNZV58eCL5E/oBvREe2MnV 73/Q8eqBUpA3HrQoUsrfqZ500aZgONGOZdbdlFiz2j0HJelzsgOC9bm7duNIA4gTjUnZ Eq4g== 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 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: ALoCoQk8oVIfwbeDc42tVSIisIyYzAqXePcu2KX1ieO+dh9lge7dps4r7sN9wwBo/GC4NhsyTVlC X-Spam-Note: CRM114 invocation failed 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.220.49 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, Sascha Hauer , patches@linaro.org, Tony Lindgren , Mark Brown , linux-kernel@vger.kernel.org, Kukjin Kim , John Stultz , Ben Dooks , kernel-team@android.com, Liam Girdwood , 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;