* [PATCH 1/1] ARM: OMAP2+: enable support for GPIO connected LEDs
@ 2012-11-24 9:34 Javier Martinez Canillas
2012-11-26 5:45 ` AnilKumar, Chimata
0 siblings, 1 reply; 3+ messages in thread
From: Javier Martinez Canillas @ 2012-11-24 9:34 UTC (permalink / raw)
To: linux-arm-kernel
Many OMAP boards use GPIO LEDs to notify status to the user
on boot. So, it is good to have by default support for GPIO
connected LEDs as well as some commonly used triggers.
Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
---
arch/arm/configs/omap2plus_defconfig | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index 6333e96..7c6cbdf 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -193,6 +193,14 @@ CONFIG_MMC_UNSAFE_RESUME=y
CONFIG_SDIO_UART=y
CONFIG_MMC_OMAP=y
CONFIG_MMC_OMAP_HS=y
+CONFIG_NEW_LEDS=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_GPIO=y
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_HEARTBEAT=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=y
+CONFIG_LEDS_TRIGGER_GPIO=y
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_DRV_TWL92330=y
CONFIG_RTC_DRV_TWL4030=y
--
1.7.7.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 1/1] ARM: OMAP2+: enable support for GPIO connected LEDs
2012-11-24 9:34 [PATCH 1/1] ARM: OMAP2+: enable support for GPIO connected LEDs Javier Martinez Canillas
@ 2012-11-26 5:45 ` AnilKumar, Chimata
2012-11-26 8:31 ` Javier Martinez Canillas
0 siblings, 1 reply; 3+ messages in thread
From: AnilKumar, Chimata @ 2012-11-26 5:45 UTC (permalink / raw)
To: linux-arm-kernel
On Sat, Nov 24, 2012 at 15:04:02, Javier Martinez Canillas wrote:
> Many OMAP boards use GPIO LEDs to notify status to the user
> on boot. So, it is good to have by default support for GPIO
> connected LEDs as well as some commonly used triggers.
>
> Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
> ---
> arch/arm/configs/omap2plus_defconfig | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
> index 6333e96..7c6cbdf 100644
> --- a/arch/arm/configs/omap2plus_defconfig
> +++ b/arch/arm/configs/omap2plus_defconfig
> @@ -193,6 +193,14 @@ CONFIG_MMC_UNSAFE_RESUME=y
> CONFIG_SDIO_UART=y
> CONFIG_MMC_OMAP=y
> CONFIG_MMC_OMAP_HS=y
> +CONFIG_NEW_LEDS=y
> +CONFIG_LEDS_CLASS=y
> +CONFIG_LEDS_GPIO=y
> +CONFIG_LEDS_TRIGGERS=y
> +CONFIG_LEDS_TRIGGER_HEARTBEAT=y
> +CONFIG_LEDS_TRIGGER_BACKLIGHT=y
> +CONFIG_LEDS_TRIGGER_GPIO=y
> +CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
Hi Javier,
Similar patch sent few days back
http://lists.infradead.org/pipermail/linux-arm-kernel/2012-November/133760.html
Let me know do you have any comments
Thanks
AnilKumar
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] ARM: OMAP2+: enable support for GPIO connected LEDs
2012-11-26 5:45 ` AnilKumar, Chimata
@ 2012-11-26 8:31 ` Javier Martinez Canillas
0 siblings, 0 replies; 3+ messages in thread
From: Javier Martinez Canillas @ 2012-11-26 8:31 UTC (permalink / raw)
To: linux-arm-kernel
On 11/26/2012 06:45 AM, AnilKumar, Chimata wrote:
> On Sat, Nov 24, 2012 at 15:04:02, Javier Martinez Canillas wrote:
>> Many OMAP boards use GPIO LEDs to notify status to the user
>> on boot. So, it is good to have by default support for GPIO
>> connected LEDs as well as some commonly used triggers.
>>
>> Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
>> ---
>> arch/arm/configs/omap2plus_defconfig | 8 ++++++++
>> 1 files changed, 8 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
>> index 6333e96..7c6cbdf 100644
>> --- a/arch/arm/configs/omap2plus_defconfig
>> +++ b/arch/arm/configs/omap2plus_defconfig
>> @@ -193,6 +193,14 @@ CONFIG_MMC_UNSAFE_RESUME=y
>> CONFIG_SDIO_UART=y
>> CONFIG_MMC_OMAP=y
>> CONFIG_MMC_OMAP_HS=y
>> +CONFIG_NEW_LEDS=y
>> +CONFIG_LEDS_CLASS=y
>> +CONFIG_LEDS_GPIO=y
>> +CONFIG_LEDS_TRIGGERS=y
>> +CONFIG_LEDS_TRIGGER_HEARTBEAT=y
>> +CONFIG_LEDS_TRIGGER_BACKLIGHT=y
>> +CONFIG_LEDS_TRIGGER_GPIO=y
>> +CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
>
> Hi Javier,
>
> Similar patch sent few days back
> http://lists.infradead.org/pipermail/linux-arm-kernel/2012-November/133760.html
>
> Let me know do you have any comments
>
> Thanks
> AnilKumar
>
Hi AnilKumar,
I haven't seen your patch before sorry.
I've answered on your original patch thread.
Thanks a lot and best regards,
Javier
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-11-26 8:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-24 9:34 [PATCH 1/1] ARM: OMAP2+: enable support for GPIO connected LEDs Javier Martinez Canillas
2012-11-26 5:45 ` AnilKumar, Chimata
2012-11-26 8:31 ` Javier Martinez Canillas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).