Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755903Ab0H3QOY (ORCPT ); Mon, 30 Aug 2010 12:14:24 -0400 Received: from sg2ehsobe001.messaging.microsoft.com ([207.46.51.75]:27273 "EHLO SG2EHSOBE002.bigfish.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755894Ab0H3QOW convert rfc822-to-8bit (ORCPT ); Mon, 30 Aug 2010 12:14:22 -0400 X-Greylist: delayed 905 seconds by postgrey-1.27 at vger.kernel.org; Mon, 30 Aug 2010 12:14:22 EDT X-SpamScore: -20 X-BigFish: VPS-20(zz542N1432N9371Pzz1202hzz8275bh8275dh8275chz2dh61h) X-Spam-TCS-SCL: 0:0 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT Subject: RE: [PATCH 8/9] x86: of: irq additions to make drivers/of/* build on x86 Date: Mon, 30 Aug 2010 08:58:52 -0700 In-Reply-To: <20100830000614.0d571f10@debxo> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH 8/9] x86: of: irq additions to make drivers/of/* build on x86 Thread-Index: ActH+GrdGzS9XMa2Qs+DwWAsi4NVQwAY6ZAw References: <20100628215407.2017bf2f@debian><20100829235100.6dcedcb8@debxo> <20100830000614.0d571f10@debxo> From: Stephen Neuendorffer To: "Andres Salomon" , CC: , , , , , , "Mitch Bradley" , , , , X-OriginalArrivalTime: 30 Aug 2010 15:59:08.0385 (UTC) FILETIME=[477E6D10:01CB485C] X-RCIS-Action: ALLOW Message-ID: X-Reverse-DNS: unknown-60-83.xilinx.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3288 Lines: 98 > -----Original Message----- > From: Andres Salomon [mailto:dilinger@queued.net] > Sent: Sunday, August 29, 2010 9:06 PM > To: devicetree-discuss@lists.ozlabs.org > Cc: sparclinux@vger.kernel.org; x86@kernel.org; tglx@linutronix.de; mingo@redhat.com; hpa@zytor.com; > cjb@laptop.org; Mitch Bradley; pgf@laptop.org; linux-kernel@vger.kernel.org; davem@davemloft.net; > grant.likely@secretlab.ca; Stephen Neuendorffer > Subject: [PATCH 8/9] x86: of: irq additions to make drivers/of/* build on x86 > > > This functionality overlaps with patches previously submitted > by Stephen Neuendorffer. I don't care whose eventually get applied, > so long as drivers/of/* becomes buildable on x86. > > Signed-off-by: Andres Salomon Agreed.. Signed-off-by: Stephen Neuendorffer > --- > arch/x86/include/asm/irq.h | 5 +++++ > arch/x86/kernel/irq.c | 8 ++++++++ > include/linux/of_irq.h | 1 + > 3 files changed, 14 insertions(+), 0 deletions(-) > > diff --git a/arch/x86/include/asm/irq.h b/arch/x86/include/asm/irq.h > index 5458380..0a656b9 100644 > --- a/arch/x86/include/asm/irq.h > +++ b/arch/x86/include/asm/irq.h > @@ -10,6 +10,11 @@ > #include > #include > > +#define NO_IRQ 0 > + > +/* Even though we don't support this, supply it to appease OF */ > +static inline void irq_dispose_mapping(unsigned int virq) { } > + > static inline int irq_canonicalize(int irq) > { > return ((irq == 2) ? 9 : irq); > diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c > index 91fd0c7..d53f639 100644 > --- a/arch/x86/kernel/irq.c > +++ b/arch/x86/kernel/irq.c > @@ -7,6 +7,7 @@ > #include > #include > #include > +#include > > #include > #include > @@ -275,6 +276,13 @@ void smp_x86_platform_ipi(struct pt_regs *regs) > > EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq); > > +unsigned int irq_create_of_mapping(struct device_node *controller, > + const u32 *intspec, unsigned int intsize) > +{ > + return intspec[0] + 1; > +} > +EXPORT_SYMBOL_GPL(irq_create_of_mapping); > + > #ifdef CONFIG_HOTPLUG_CPU > /* A cpu has been removed from cpu_online_mask. Reset irq affinities. */ > void fixup_irqs(void) > diff --git a/include/linux/of_irq.h b/include/linux/of_irq.h > index 5929781..05ad27b 100644 > --- a/include/linux/of_irq.h > +++ b/include/linux/of_irq.h > @@ -5,6 +5,7 @@ > struct of_irq; > #include > #include > +#include > #include > #include > > -- > 1.5.6.5 > This email and any attachments are intended for the sole use of the named recipient(s) and contain(s) confidential information that may be proprietary, privileged or copyrighted under applicable law. If you are not the intended recipient, do not read, copy, or forward this email message or any attachments. Delete this email message and any attachments immediately. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/