All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Pitre <nico@fluxnic.net>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: Tony Lindgren <tony@atomide.com>, Sekhar Nori <nsekhar@ti.com>,
	Kevin Hilman <khilman@ti.com>,
	Lennert Buytenhek <kernel@wantstofly.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	linux-arm-kernel@lists.infradead.org,
	davinci-linux-open-source@linux.davincidsp.com,
	linux-omap@vger.kernel.org
Subject: Re: [PATCH] Fix generic irq chip
Date: Fri, 20 May 2011 18:20:54 -0400 (EDT)	[thread overview]
Message-ID: <alpine.LFD.2.00.1105201820180.14430@xanadu.home> (raw)
In-Reply-To: <20110520220510.GC30675@n2100.arm.linux.org.uk>

On Fri, 20 May 2011, 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: Nicolas Pitre <nico@fluxnic.net>




> 
>  arch/arm/Kconfig           |    2 ++
>  arch/arm/plat-omap/Kconfig |    1 +
>  2 files changed, 3 insertions(+), 0 deletions(-)
> 
> 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"
> 

WARNING: multiple messages have this Message-ID (diff)
From: nico@fluxnic.net (Nicolas Pitre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] Fix generic irq chip
Date: Fri, 20 May 2011 18:20:54 -0400 (EDT)	[thread overview]
Message-ID: <alpine.LFD.2.00.1105201820180.14430@xanadu.home> (raw)
In-Reply-To: <20110520220510.GC30675@n2100.arm.linux.org.uk>

On Fri, 20 May 2011, 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: Nicolas Pitre <nico@fluxnic.net>




> 
>  arch/arm/Kconfig           |    2 ++
>  arch/arm/plat-omap/Kconfig |    1 +
>  2 files changed, 3 insertions(+), 0 deletions(-)
> 
> 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"
> 

  parent reply	other threads:[~2011-05-20 22:20 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-20 22:05 [PATCH] Fix generic irq chip Russell King - ARM Linux
2011-05-20 22:05 ` Russell King - ARM Linux
2011-05-20 22:11 ` Thomas Gleixner
2011-05-20 22:11   ` Thomas Gleixner
2011-05-20 22:20 ` Nicolas Pitre [this message]
2011-05-20 22:20   ` Nicolas Pitre
2011-05-23  9:53 ` Nori, Sekhar
2011-05-23  9:53   ` Nori, Sekhar
2011-05-23 13:48 ` Kevin Hilman
2011-05-23 13:48   ` Kevin Hilman
2011-05-23 15:01   ` Russell King - ARM Linux
2011-05-23 15:01     ` Russell King - ARM Linux
2011-05-23 15:20     ` Kevin Hilman
2011-05-23 15:20       ` Kevin Hilman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LFD.2.00.1105201820180.14430@xanadu.home \
    --to=nico@fluxnic.net \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=kernel@wantstofly.org \
    --cc=khilman@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=nsekhar@ti.com \
    --cc=tglx@linutronix.de \
    --cc=tony@atomide.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.