From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw0-f203.google.com (mail-yw0-f203.google.com [209.85.211.203]) by ozlabs.org (Postfix) with ESMTP id EE81AB7D1D for ; Sat, 5 Jun 2010 07:25:16 +1000 (EST) Received: by ywh41 with SMTP id 41so1656880ywh.9 for ; Fri, 04 Jun 2010 14:25:14 -0700 (PDT) MIME-Version: 1.0 Sender: glikely@secretlab.ca From: Grant Likely Date: Fri, 4 Jun 2010 15:24:54 -0600 Message-ID: Subject: [PATCH 0/5] Consolidate OF IRQ handling code To: Grant Likely Content-Type: text/plain; charset=ISO-8859-1 Cc: Stephen Rothwell , Michal Simek , devicetree-discuss@lists.ozlabs.org, linuxppc-dev@ozlabs.org, microblaze-uclinux@itee.uq.edu.au, sparclinux@vger.kernel.org, Jeremy Kerr , "David S. Miller" List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , This series merges the common IRQ handling code between Microblaze and Powerpc. I'll be adding these patches to linux-next next week unless there are objections. Cheers, g. Grant Likely (5): of/irq: Move irq_of_parse_and_map() to common code of/microblaze: strip out of_irq_workarounds code of/irq: merge of_irq_find_parent() of/irq: Merge of_irq_map_raw() of/irq: merge of_irq_map_one() arch/microblaze/include/asm/irq.h | 13 -- arch/microblaze/include/asm/prom.h | 63 +------- arch/microblaze/kernel/irq.c | 14 +-- arch/microblaze/kernel/prom_parse.c | 321 +--------------------------------- arch/powerpc/include/asm/irq.h | 13 -- arch/powerpc/include/asm/prom.h | 51 +----- arch/powerpc/kernel/irq.c | 14 +-- arch/powerpc/kernel/prom_parse.c | 254 +-------------------------- arch/sparc/include/asm/prom.h | 1 - drivers/of/Kconfig | 4 + drivers/of/Makefile | 1 + drivers/of/irq.c | 336 +++++++++++++++++++++++++++++++++++ drivers/of/of_mdio.c | 1 + include/linux/of_irq.h | 49 +++++ 14 files changed, 405 insertions(+), 730 deletions(-) create mode 100644 drivers/of/irq.c create mode 100644 include/linux/of_irq.h