From patchwork Mon Nov 12 13:47:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heiko Stuebner X-Patchwork-Id: 1728231 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 EFF6FDFE80 for ; Mon, 12 Nov 2012 13:49:40 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TXuMr-0002Nn-3d; Mon, 12 Nov 2012 13:48:01 +0000 Received: from gloria.sntech.de ([95.129.55.99]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TXuMm-0002MQ-Mc for linux-arm-kernel@lists.infradead.org; Mon, 12 Nov 2012 13:47:57 +0000 Received: from 146-52-32-60-dynip.superkabel.de ([146.52.32.60] helo=marty.localnet) by gloria.sntech.de with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1TXuMh-0002PF-9O; Mon, 12 Nov 2012 14:47:51 +0100 From: Heiko =?utf-8?q?St=C3=BCbner?= To: Kukjin Kim , Stephen Warren , Olof Johansson Subject: [RFC PATCH 1/4] ARM: S3C24XX: move s3c24xx-irq to drivers/irqchip Date: Mon, 12 Nov 2012 14:47:46 +0100 User-Agent: KMail/1.13.7 (Linux/3.2.0-3-686-pae; KDE/4.8.4; i686; ; ) References: <201211121446.30167.heiko@sntech.de> In-Reply-To: <201211121446.30167.heiko@sntech.de> MIME-Version: 1.0 Message-Id: <201211121447.49977.heiko@sntech.de> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121112_084756_917795_DBEEAD30 X-CRM114-Status: GOOD ( 12.21 ) 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 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linux-samsung-soc@vger.kernel.org, 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: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Removes another part from plat-s3c24xx and also enables further improvements happening in the correct location. Signed-off-by: Heiko Stuebner --- arch/arm/Kconfig | 1 + arch/arm/plat-s3c24xx/Makefile | 1 - drivers/irqchip/Kconfig | 3 +++ drivers/irqchip/Makefile | 1 + .../irq.c => drivers/irqchip/irq-s3c24xx.c | 0 5 files changed, 5 insertions(+), 1 deletions(-) rename arch/arm/plat-s3c24xx/irq.c => drivers/irqchip/irq-s3c24xx.c (100%) diff --git a/arch/arm/plat-s3c24xx/irq.c b/drivers/irqchip/irq-s3c24xx.c similarity index 100% rename from arch/arm/plat-s3c24xx/irq.c rename to drivers/irqchip/irq-s3c24xx.c diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 48eea16..7db6b91 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -742,6 +742,7 @@ config ARCH_S3C24XX select HAVE_S3C_RTC if RTC_CLASS select NEED_MACH_GPIO_H select NEED_MACH_IO_H + select S3C24XX_IRQ help Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443 and S3C2450 SoCs based systems, such as the Simtec Electronics BAST diff --git a/arch/arm/plat-s3c24xx/Makefile b/arch/arm/plat-s3c24xx/Makefile index 9f60549c..6472416 100644 --- a/arch/arm/plat-s3c24xx/Makefile +++ b/arch/arm/plat-s3c24xx/Makefile @@ -12,7 +12,6 @@ obj- := # Core files -obj-y += irq.o obj-$(CONFIG_S3C24XX_DCLK) += clock-dclk.o obj-$(CONFIG_CPU_FREQ_S3C24XX) += cpu-freq.o diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index 62ca575..860d45d 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -1,3 +1,6 @@ +config S3C24XX_IRQ + bool + config VERSATILE_FPGA_IRQ bool select IRQ_DOMAIN diff --git a/drivers/irqchip/Makefile b/drivers/irqchip/Makefile index e2e6eb5..5c20f85 100644 --- a/drivers/irqchip/Makefile +++ b/drivers/irqchip/Makefile @@ -1,2 +1,3 @@ obj-$(CONFIG_ARCH_BCM2835) += irq-bcm2835.o +obj-$(CONFIG_S3C24XX_IRQ) += irq-s3c24xx.o obj-$(CONFIG_VERSATILE_FPGA_IRQ) += irq-versatile-fpga.o