From patchwork Mon Jan 28 12:30:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 2055701 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id AFBFDE00C6 for ; Mon, 28 Jan 2013 12:33:11 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TznrY-0006iU-96; Mon, 28 Jan 2013 12:31:00 +0000 Received: from mail-wi0-f175.google.com ([209.85.212.175]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TznrV-0006hl-SI for linux-arm-kernel@lists.infradead.org; Mon, 28 Jan 2013 12:30:58 +0000 Received: by mail-wi0-f175.google.com with SMTP id hq12so877316wib.8 for ; Mon, 28 Jan 2013 04:30:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=Q2P0j6Aac6ggiDO05ZfcN84vi8JvLbuKr1Hqh1z2/yo=; b=NE3hZ3Xqn0LeMsgRP9s7RU1xeETYytHapBk8d2IhzxC1nMpKEz59tSeOcCG5bg1qcK VXEY9OCsGSoZHEFSgOa9RncZ5H5LrklIWI8v8ypKw/hoNJqHKpzHOKxBbDCcH+k0bZhF vaHOUYL1N+brkyV1N1zoGLNCGqdxcBw6WzXqjqf7jvDvYozsHs8Txdu/FdTvxknZbm4o /cwyW5oDzgRvNLekqZePRcX4ihcdlb1rKE4GIov2WnJ7lujl+m6a9uLxGV49AhSoPhee YjF2/snTLoBDb+dCS5hNHVfARwUGJGUdgsaaeUclyRH161G59v+yLpgcG9Gq+yJXJh/D eBLg== X-Received: by 10.180.20.138 with SMTP id n10mr9625758wie.0.1359376252533; Mon, 28 Jan 2013 04:30:52 -0800 (PST) Received: from localhost (nat-63.starnet.cz. [178.255.168.63]) by mx.google.com with ESMTPS id ex6sm13201800wid.3.2013.01.28.04.30.51 (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Mon, 28 Jan 2013 04:30:51 -0800 (PST) From: Michal Simek To: rob.herring@calxeda.com Subject: [PATCH] arm: zynq: Add missing irqchip.h to common.c Date: Mon, 28 Jan 2013 13:30:50 +0100 Message-Id: <1359376250-18841-1-git-send-email-michal.simek@xilinx.com> X-Mailer: git-send-email 1.7.0.4 X-Gm-Message-State: ALoCoQmNJ7ILq0fW7LdOfQN4zl7I+5Wq+UFJOlfpNxt8kRABcdz/d21Znl4s9PbRuSg5griayZvh X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130128_073058_000804_B0D6169B X-CRM114-Status: GOOD ( 10.03 ) X-Spam-Score: -1.3 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.3 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.212.175 listed in list.dnswl.org] 1.3 RCVD_IN_BL_SPAMCOP_NET RBL: Received via a relay in bl.spamcop.net [Blocked - see ] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Josh Cartwright , monstr@monstr.eu, 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: "ARM: use common irqchip_init for GIC init" (sha1: 0529e315bbda5d502c93df2cfafba9bb337fbdf4) should also add linux/irqchip.h header. Error message: arch/arm/mach-zynq/common.c:99:14: error: 'irqchip_init' undeclared here (not in a function) Signed-off-by: Michal Simek --- arch/arm/mach-zynq/common.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c index 6472a69..cf3ec54 100644 --- a/arch/arm/mach-zynq/common.c +++ b/arch/arm/mach-zynq/common.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include