mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: imx_v7_defconfig: enable LED_GPIO_OF
@ 2016-06-26 14:11 Alexander Kurz
  2016-06-27  8:57 ` Alexander Kurz
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Kurz @ 2016-06-26 14:11 UTC (permalink / raw)
  To: barebox; +Cc: Alexander Kurz

GPIO leds are widely used in imx_v7 related dts files. Enable support
to parse this data and enable blinking LED by defconfig on e.g. iMX35qsb.

Signed-off-by: Alexander Kurz <akurz@blala.de>
---
 arch/arm/configs/imx_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/imx_v7_defconfig b/arch/arm/configs/imx_v7_defconfig
index 5ab3433..8594965 100644
--- a/arch/arm/configs/imx_v7_defconfig
+++ b/arch/arm/configs/imx_v7_defconfig
@@ -164,6 +164,7 @@ CONFIG_MFD_MC9SDZ60=y
 CONFIG_MFD_STMPE=y
 CONFIG_LED=y
 CONFIG_LED_GPIO=y
+CONFIG_LED_GPIO_OF=y
 CONFIG_LED_TRIGGERS=y
 CONFIG_EEPROM_AT25=y
 CONFIG_EEPROM_AT24=y
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: imx_v7_defconfig: enable LED_GPIO_OF
  2016-06-26 14:11 [PATCH] ARM: imx_v7_defconfig: enable LED_GPIO_OF Alexander Kurz
@ 2016-06-27  8:57 ` Alexander Kurz
  2016-06-27  9:02   ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Kurz @ 2016-06-27  8:57 UTC (permalink / raw)
  To: barebox

Hi,
please note, there commit message contains a typo: s/iMX35qsb/iMX53qsb/
regards, Alexander

On Sun, 26 Jun 2016, Alexander Kurz wrote:

> GPIO leds are widely used in imx_v7 related dts files. Enable support
> to parse this data and enable blinking LED by defconfig on e.g. iMX35qsb.
> 
> Signed-off-by: Alexander Kurz <akurz@blala.de>
> ---
>  arch/arm/configs/imx_v7_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/imx_v7_defconfig b/arch/arm/configs/imx_v7_defconfig
> index 5ab3433..8594965 100644
> --- a/arch/arm/configs/imx_v7_defconfig
> +++ b/arch/arm/configs/imx_v7_defconfig
> @@ -164,6 +164,7 @@ CONFIG_MFD_MC9SDZ60=y
>  CONFIG_MFD_STMPE=y
>  CONFIG_LED=y
>  CONFIG_LED_GPIO=y
> +CONFIG_LED_GPIO_OF=y
>  CONFIG_LED_TRIGGERS=y
>  CONFIG_EEPROM_AT25=y
>  CONFIG_EEPROM_AT24=y
> -- 
> 2.1.4
> 

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: imx_v7_defconfig: enable LED_GPIO_OF
  2016-06-27  8:57 ` Alexander Kurz
@ 2016-06-27  9:02   ` Sascha Hauer
  0 siblings, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2016-06-27  9:02 UTC (permalink / raw)
  To: Alexander Kurz; +Cc: barebox

On Mon, Jun 27, 2016 at 10:57:07AM +0200, Alexander Kurz wrote:
> Hi,
> please note, there commit message contains a typo: s/iMX35qsb/iMX53qsb/
> regards, Alexander

Applied with the typo fixed, thanks

Sascha

> 
> On Sun, 26 Jun 2016, Alexander Kurz wrote:
> 
> > GPIO leds are widely used in imx_v7 related dts files. Enable support
> > to parse this data and enable blinking LED by defconfig on e.g. iMX35qsb.
> > 
> > Signed-off-by: Alexander Kurz <akurz@blala.de>
> > ---
> >  arch/arm/configs/imx_v7_defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm/configs/imx_v7_defconfig b/arch/arm/configs/imx_v7_defconfig
> > index 5ab3433..8594965 100644
> > --- a/arch/arm/configs/imx_v7_defconfig
> > +++ b/arch/arm/configs/imx_v7_defconfig
> > @@ -164,6 +164,7 @@ CONFIG_MFD_MC9SDZ60=y
> >  CONFIG_MFD_STMPE=y
> >  CONFIG_LED=y
> >  CONFIG_LED_GPIO=y
> > +CONFIG_LED_GPIO_OF=y
> >  CONFIG_LED_TRIGGERS=y
> >  CONFIG_EEPROM_AT25=y
> >  CONFIG_EEPROM_AT24=y
> > -- 
> > 2.1.4
> > 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-27  9:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-26 14:11 [PATCH] ARM: imx_v7_defconfig: enable LED_GPIO_OF Alexander Kurz
2016-06-27  8:57 ` Alexander Kurz
2016-06-27  9:02   ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox