From patchwork Mon Jul 23 07:41:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 172563 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (unknown [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9C1032C0334 for ; Mon, 23 Jul 2012 17:46:00 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1StDGr-00061S-Ks; Mon, 23 Jul 2012 07:41:37 +0000 Received: from mail-bk0-f49.google.com ([209.85.214.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1StDGl-00061E-Cj for linux-arm-kernel@lists.infradead.org; Mon, 23 Jul 2012 07:41:32 +0000 Received: by bkcji2 with SMTP id ji2so4681718bkc.36 for ; Mon, 23 Jul 2012 00:41:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=K93YalxVNohttmHiD06Jkg14vIoGWHUYZi7ZgsvGxgQ=; b=R5SZLKrkp76ug1v1EX8W+16NXjtJ4ezeWvZ1GaHW3fw978+qAeWlPF2Zf5DwGKYOLb mr9WDQrNJQ+8jXK30Q5yiBqdsJP91dI6YLy+m1/6xyMAFhoe/dQx3ldQYLES+FQuYjeO PdbI8PVMevpFN/4rqI3OzAc0sJ7memB80Fa6kKKWh4m6+1kBC/u41ylQZv1Dhm+BN9jc vg9rR5Cf7CXlnLjUZBAmuuWjdLjnVGnCW+RVz4BNmrw2HhQvk/OwykHgVQaM7l0Sijr2 dx8/FZ+Tp5EB5ZrzCvWggsOGGUmd0WjDr7SSNfJAgH/XV4Odx2e/wXkf9q79eEUbWRoN F6sw== Received: by 10.204.152.137 with SMTP id g9mr7369663bkw.106.1343029287121; Mon, 23 Jul 2012 00:41:27 -0700 (PDT) Received: from localhost.localdomain (206.74.63.81.cust.bluewin.ch. [81.63.74.206]) by mx.google.com with ESMTPS id z19sm6203600bkw.10.2012.07.23.00.41.25 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 23 Jul 2012 00:41:26 -0700 (PDT) From: Fabio Estevam To: shawn.guo@linaro.org Subject: [PATCH] ARM: mxc: Include missing irqs.h header Date: Mon, 23 Jul 2012 04:41:18 -0300 Message-Id: <1343029278-11654-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.7.1 X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (festevam[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.214.49 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Fabio Estevam , kernel@pengutronix.de, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list 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+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org From: Fabio Estevam Include irqs.h in order to fix the following build error: arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function) Signed-off-by: Fabio Estevam Acked-by: Dirk Behme --- arch/arm/plat-mxc/tzic.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-mxc/tzic.c b/arch/arm/plat-mxc/tzic.c index c219317..3ed1adb 100644 --- a/arch/arm/plat-mxc/tzic.c +++ b/arch/arm/plat-mxc/tzic.c @@ -23,6 +23,7 @@ #include #include +#include #include "irq-common.h"