From patchwork Sat May 31 06:01:35 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Shiyan X-Patchwork-Id: 354383 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2001:1868:205::9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id DEA6F140104 for ; Sat, 31 May 2014 16:05:35 +1000 (EST) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WqcNe-0007ml-9k; Sat, 31 May 2014 06:02:58 +0000 Received: from smtp29.i.mail.ru ([94.100.177.89]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WqcMt-0007ca-LS for linux-arm-kernel@lists.infradead.org; Sat, 31 May 2014 06:02:14 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=jhCScaEfRh3pfocsFyR8NlrED3/YHuSFb+/BqCulSsY=; b=ArS4h/5ELfjTKZOg8ogv6HnlR2uHvapMihPsHjgzkSoMi+Gd8y5ZLjfiwaGN9K0AtAZP4X6HOEsWHP0V+Hm4HAvdfPq8t81MMBPO6i16KklTHAYJPMx78sEOkU7A6uNSYs4gDnIXfZx7fchCJ11UyWJ1gu0FUWoErqBNhzjEKKk=; Received: from [5.18.98.7] (port=52298 helo=shc.zet) by smtp29.i.mail.ru with esmtpa (envelope-from ) id 1WqcMW-0007V2-Jw; Sat, 31 May 2014 10:01:48 +0400 From: Alexander Shiyan To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 3/3] ARM: i.MX: tzic: Cleanup driver Date: Sat, 31 May 2014 10:01:35 +0400 Message-Id: <1401516095-31020-6-git-send-email-shc_work@mail.ru> X-Mailer: git-send-email 1.8.5.5 In-Reply-To: <1401516095-31020-1-git-send-email-shc_work@mail.ru> References: <1401516095-31020-1-git-send-email-shc_work@mail.ru> X-Spam: Not detected X-Mras: Ok X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140530_230212_344960_4CD14834 X-CRM114-Status: GOOD ( 10.83 ) X-Spam-Score: -0.1 (/) X-Spam-Report: SpamAssassin version 3.3.2 on bombadil.infradead.org summary: Content analysis details: (-0.1 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [94.100.177.89 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (shc_work[at]mail.ru) -0.0 SPF_PASS SPF: sender matches SPF record -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain Cc: Alexander Shiyan , Sascha Hauer , Shawn Guo X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org This patch removes unused #include. No functional changes. Signed-off-by: Alexander Shiyan --- arch/arm/mach-imx/tzic.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/arch/arm/mach-imx/tzic.c b/arch/arm/mach-imx/tzic.c index 534431e..6eb4afb 100644 --- a/arch/arm/mach-imx/tzic.c +++ b/arch/arm/mach-imx/tzic.c @@ -9,10 +9,6 @@ * http://www.gnu.org/copyleft/gpl.html */ -#include -#include -#include -#include #include #include #include @@ -22,8 +18,6 @@ #include #include -#include "common.h" -#include "hardware.h" #include "irq-common.h" /* @@ -72,8 +66,6 @@ static int tzic_set_irq_fiq(unsigned int irq, unsigned int type) return 0; } -#else -#define tzic_set_irq_fiq NULL #endif static void tzic_irq_suspend(struct irq_data *d)