From patchwork Mon May 18 22:11:35 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Baryshkov X-Patchwork-Id: 6432431 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id EF7BFC0432 for ; Mon, 18 May 2015 22:14:43 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 13BD22043C for ; Mon, 18 May 2015 22:14:43 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1067A20457 for ; Mon, 18 May 2015 22:14:42 +0000 (UTC) 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 1YuTGw-00030P-0d; Mon, 18 May 2015 22:12:30 +0000 Received: from mail-wi0-x22f.google.com ([2a00:1450:400c:c05::22f]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YuTGi-0002yI-Tf for linux-arm-kernel@lists.infradead.org; Mon, 18 May 2015 22:12:17 +0000 Received: by wizk4 with SMTP id k4so95839379wiz.1 for ; Mon, 18 May 2015 15:11:55 -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:in-reply-to:references; bh=z+c/S4cD/uA5aSLqFJLSaoLV59htuOC8jH6ZN5fsb0k=; b=wWl5AN1ic4hTq8DFc+yV7D3n/uFp5uD0ax4w0rn6/BLp6RTtV05TUUhzwGIzPAFxZb JCjWAY0dLzbf5hglADzskBYmniaElapRzSz4C/4/a6nbZGBnEBvV5IPmtMv+wcGSVZ0G oMMUWagKky46nfaJe2SM0wDv2eYDcDkRORecxtXqhEYJpim2MgmH4HCYnXTepHW8zg+X xnf5R/XAfb2FO5Ft1peiPrwiSz2XG7bdGiun+z0ZFaU7nZjjlhhATCFDxFJvwUBUY9k1 Lv15asx2km9MYn/Ob0+yS8RpmlnVpmIjNGNjkEcy3pKvr0QqA/9+a9k25xw2/0vtPEcc WRaA== X-Received: by 10.180.85.42 with SMTP id e10mr25447354wiz.17.1431987115213; Mon, 18 May 2015 15:11:55 -0700 (PDT) Received: from fangorn.rup.mentorg.com (nat-min.mentorg.com. [139.181.32.34]) by mx.google.com with ESMTPSA id b10sm14395287wic.1.2015.05.18.15.11.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 18 May 2015 15:11:54 -0700 (PDT) From: Dmitry Eremin-Solenikov To: Russell King , Thomas Gleixner , Jason Cooper Subject: [PATCH 1/2] ARM: sa1100: prepare for moving irq driver to drivers/irqchip Date: Tue, 19 May 2015 01:11:35 +0300 Message-Id: <1431987096-16308-2-git-send-email-dbaryshkov@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1431987096-16308-1-git-send-email-dbaryshkov@gmail.com> References: <1431987096-16308-1-git-send-email-dbaryshkov@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150518_151217_106343_D8BD29EF X-CRM114-Status: GOOD ( 16.23 ) X-Spam-Score: -0.8 (/) Cc: linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Prepare for moving sa1100 irq driver to irqchip infrastructure - split sa1100_init_irq into helper code and irq parts. Signed-off-by: Dmitry Eremin-Solenikov --- arch/arm/mach-sa1100/generic.c | 13 +++++++++++++ arch/arm/mach-sa1100/irq.c | 21 ++++++--------------- include/linux/irqchip/irq-sa11x0.h | 17 +++++++++++++++++ 3 files changed, 36 insertions(+), 15 deletions(-) create mode 100644 include/linux/irqchip/irq-sa11x0.h diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index c651f6e..345e63f 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c @@ -20,6 +20,7 @@ #include #include #include +#include #include