From patchwork Thu Nov 3 09:31:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Hui X-Patchwork-Id: 4929 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 163B623E04 for ; Thu, 3 Nov 2011 09:23:58 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 0B10BA188D1 for ; Thu, 3 Nov 2011 09:23:58 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so1917241faa.11 for ; Thu, 03 Nov 2011 02:23:58 -0700 (PDT) Received: by 10.223.85.134 with SMTP id o6mr21010fal.27.1320312237834; Thu, 03 Nov 2011 02:23:57 -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.152.14.103 with SMTP id o7cs79639lac; Thu, 3 Nov 2011 02:23:57 -0700 (PDT) Received: by 10.52.72.227 with SMTP id g3mr8905521vdv.10.1320312235924; Thu, 03 Nov 2011 02:23:55 -0700 (PDT) Received: from ch1outboundpool.messaging.microsoft.com (ch1ehsobe001.messaging.microsoft.com. [216.32.181.181]) by mx.google.com with ESMTPS id ew2si4397099vdc.65.2011.11.03.02.23.55 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 03 Nov 2011 02:23:55 -0700 (PDT) Received-SPF: neutral (google.com: 216.32.181.181 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) client-ip=216.32.181.181; Authentication-Results: mx.google.com; spf=neutral (google.com: 216.32.181.181 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) smtp.mail=jason.hui@linaro.org Received: from mail47-ch1-R.bigfish.com (10.43.68.254) by CH1EHSOBE010.bigfish.com (10.43.70.60) with Microsoft SMTP Server id 14.1.225.22; Thu, 3 Nov 2011 09:23:39 +0000 Received: from mail47-ch1 (localhost.localdomain [127.0.0.1]) by mail47-ch1-R.bigfish.com (Postfix) with ESMTP id 10C6918E8228; Thu, 3 Nov 2011 09:23:47 +0000 (UTC) X-SpamScore: 0 X-BigFish: VS0(zzzz1202hzz8275dhz2dh87h2a8h668h839h) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPVD:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-FB-SS: 13, X-FB-DOMAIN-IP-MATCH: fail Received: from mail47-ch1 (localhost.localdomain [127.0.0.1]) by mail47-ch1 (MessageSwitch) id 1320312226799575_11908; Thu, 3 Nov 2011 09:23:46 +0000 (UTC) Received: from CH1EHSMHS004.bigfish.com (snatpool1.int.messaging.microsoft.com [10.43.68.242]) by mail47-ch1.bigfish.com (Postfix) with ESMTP id BD995FC004C; Thu, 3 Nov 2011 09:23:46 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by CH1EHSMHS004.bigfish.com (10.43.70.4) with Microsoft SMTP Server (TLS) id 14.1.225.22; Thu, 3 Nov 2011 09:23:38 +0000 Received: from az33smr01.freescale.net (10.64.34.199) by 039-SN1MMR1-002.039d.mgd.msft.net (10.84.1.15) with Microsoft SMTP Server id 14.1.339.2; Thu, 3 Nov 2011 04:23:53 -0500 Received: from r64343-desktop.ap.freescale.net (r64343-desktop.ap.freescale.net [10.192.242.36]) by az33smr01.freescale.net (8.13.1/8.13.0) with ESMTP id pA39NmKY002153; Thu, 3 Nov 2011 04:23:51 -0500 (CDT) From: Jason Liu To: CC: , , , Subject: [PATCH v2 1/2] ARM:i.MX: fix build error in tzic/avic.c Date: Thu, 3 Nov 2011 17:31:26 +0800 Message-ID: <1320312687-20987-2-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1320312687-20987-1-git-send-email-jason.hui@linaro.org> References: <1320312687-20987-1-git-send-email-jason.hui@linaro.org> MIME-Version: 1.0 X-OriginatorOrg: sigmatel.com arch/arm/plat-mxc/tzic.c:105: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'tzic_handle_irq' Signed-off-by: Jason Liu --- arch/arm/plat-mxc/avic.c | 1 + arch/arm/plat-mxc/tzic.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-mxc/avic.c b/arch/arm/plat-mxc/avic.c index 8875fb4..55f1569 100644 --- a/arch/arm/plat-mxc/avic.c +++ b/arch/arm/plat-mxc/avic.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include "irq-common.h" diff --git a/arch/arm/plat-mxc/tzic.c b/arch/arm/plat-mxc/tzic.c index e993a18..a3c164c 100644 --- a/arch/arm/plat-mxc/tzic.c +++ b/arch/arm/plat-mxc/tzic.c @@ -17,6 +17,7 @@ #include #include +#include #include #include