diff mbox

Fix generic irq chip

Message ID 20110520220510.GC30675@n2100.arm.linux.org.uk (mailing list archive)
State Awaiting Upstream
Headers show

Commit Message

Russell King - ARM Linux May 20, 2011, 10:05 p.m. UTC
As a result of c42321c (genirq: Make generic irq chip depend on
CONFIG_GENERIC_IRQ_CHIP), we now need those platforms using this in
my tree to select this symbol.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
--
Please send acks ASAP.  Thanks to Mark for pointing this out with a patch
for Samsung.

 arch/arm/Kconfig           |    2 ++
 arch/arm/plat-omap/Kconfig |    1 +
 2 files changed, 3 insertions(+), 0 deletions(-)

Comments

Sekhar Nori May 23, 2011, 9:53 a.m. UTC | #1
On Sat, May 21, 2011 at 03:35:10, Russell King - ARM Linux wrote:
> As a result of c42321c (genirq: Make generic irq chip depend on
> CONFIG_GENERIC_IRQ_CHIP), we now need those platforms using this in
> my tree to select this symbol.
> 
> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
> --
> Please send acks ASAP.  Thanks to Mark for pointing this out with a patch
> for Samsung.

Acked-by: Sekhar Nori <nsekhar@ti.com>

Thanks,
Sekhar
Kevin Hilman May 23, 2011, 1:48 p.m. UTC | #2
Russell King - ARM Linux <linux@arm.linux.org.uk> writes:

> As a result of c42321c (genirq: Make generic irq chip depend on
> CONFIG_GENERIC_IRQ_CHIP), we now need those platforms using this in
> my tree to select this symbol.
>
> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
> --
> Please send acks ASAP.  Thanks to Mark for pointing this out with a patch
> for Samsung.

Acked-by: Kevin Hilman <khilman@ti.com>
Russell King - ARM Linux May 23, 2011, 3:01 p.m. UTC | #3
On Mon, May 23, 2011 at 06:48:41AM -0700, Kevin Hilman wrote:
> Russell King - ARM Linux <linux@arm.linux.org.uk> writes:
> 
> > As a result of c42321c (genirq: Make generic irq chip depend on
> > CONFIG_GENERIC_IRQ_CHIP), we now need those platforms using this in
> > my tree to select this symbol.
> >
> > Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
> > --
> > Please send acks ASAP.  Thanks to Mark for pointing this out with a patch
> > for Samsung.
> 
> Acked-by: Kevin Hilman <khilman@ti.com>

Thanks, but does that cover Davinci or OMAP?
Kevin Hilman May 23, 2011, 3:20 p.m. UTC | #4
Russell King - ARM Linux <linux@arm.linux.org.uk> writes:

> On Mon, May 23, 2011 at 06:48:41AM -0700, Kevin Hilman wrote:
>> Russell King - ARM Linux <linux@arm.linux.org.uk> writes:
>> 
>> > As a result of c42321c (genirq: Make generic irq chip depend on
>> > CONFIG_GENERIC_IRQ_CHIP), we now need those platforms using this in
>> > my tree to select this symbol.
>> >
>> > Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
>> > --
>> > Please send acks ASAP.  Thanks to Mark for pointing this out with a patch
>> > for Samsung.
>> 
>> Acked-by: Kevin Hilman <khilman@ti.com>
>
> Thanks, but does that cover Davinci or OMAP?

Both, but since Sekhar (DaVinci co-maintainer) ack'd already for
davinci, I was mainly adding my ack for OMAP.

Kevin
diff mbox

Patch

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 44c16f0..9b63bab 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -854,6 +854,7 @@  config ARCH_DAVINCI
 	select HAVE_IDE
 	select CLKDEV_LOOKUP
 	select GENERIC_ALLOCATOR
+	select GENERIC_IRQ_CHIP
 	select ARCH_HAS_HOLES_MEMORYMODEL
 	help
 	  Support for TI's DaVinci platform.
@@ -1033,6 +1034,7 @@  config PLAT_IOP
 
 config PLAT_ORION
 	bool
+	select GENERIC_IRQ_CHIP
 	select HAVE_SCHED_CLOCK
 
 config PLAT_PXA
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig
index cd5f993..29b4c35 100644
--- a/arch/arm/plat-omap/Kconfig
+++ b/arch/arm/plat-omap/Kconfig
@@ -18,6 +18,7 @@  config ARCH_OMAP1
 config ARCH_OMAP2PLUS
 	bool "TI OMAP2/3/4"
 	select CLKDEV_LOOKUP
+	select GENERIC_IRQ_CHIP
 	select OMAP_DM_TIMER
 	help
 	  "Systems based on OMAP2, OMAP3 or OMAP4"