All of lore.kernel.org
 help / color / mirror / Atom feed
From: marek.vasut@gmail.com (Marek Vasut)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 12/13] ARM: pxa: Add gpio-leds and vibrator support to PalmTC
Date: Sun, 10 Oct 2010 04:04:30 +0200	[thread overview]
Message-ID: <201010100404.30467.marek.vasut@gmail.com> (raw)
In-Reply-To: <AANLkTikHhNW_zuB4aK61Bt8FD3d_V7H6k9PPpsPgCS9X@mail.gmail.com>

Dne Ne 10. ??jna 2010 02:34:48 Haojian Zhuang napsal(a):
> On Sun, Oct 10, 2010 at 6:39 AM, Marek Vasut <marek.vasut@gmail.com> wrote:
> > Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> > ---
> >  arch/arm/mach-pxa/palmtc.c |   41
> > +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41
> > insertions(+), 0 deletions(-)
> > 
> > diff --git a/arch/arm/mach-pxa/palmtc.c b/arch/arm/mach-pxa/palmtc.c
> > index 8fbd8e0..c299a97 100644
> > --- a/arch/arm/mach-pxa/palmtc.c
> > +++ b/arch/arm/mach-pxa/palmtc.c
> > @@ -390,6 +390,46 @@ static inline void palmtc_ts_init(void) {}
> >  #endif
> > 
> >  /***********************************************************************
> > ******* + * LEDs
> > +
> > ************************************************************************
> > ******/ +#if defined(CONFIG_LEDS_GPIO) ||
> > defined(CONFIG_LEDS_GPIO_MODULE) +struct gpio_led palmtc_gpio_leds[] = {
> > +{
> > +       .name                   = "palmtc:green:user",
> > +       .default_trigger        = "none",
> > +       .gpio                   = GPIO_NR_PALMTC_LED_POWER,
> > +       .active_low             = 1,
> > +}, {
> > +       .name                   = "palmtc:vibra:vibra",
> > +       .default_trigger        = "none",
> > +       .gpio                   = GPIO_NR_PALMTC_VIBRA_POWER,
> > +       .active_low             = 1,
> > +}
> 
> Do you need to use a tab before contents in structure?

I dunno if checkpatch warns about it, but I'm used to it and it looks better.
> 
> > +
> > +};
> > +
> > +static struct gpio_led_platform_data palmtc_gpio_led_info = {
> > +       .leds           = palmtc_gpio_leds,
> > +       .num_leds       = ARRAY_SIZE(palmtc_gpio_leds),
> > +};
> > +
> > +static struct platform_device palmtc_leds = {
> > +       .name   = "leds-gpio",
> > +       .id     = -1,
> > +       .dev    = {
> > +               .platform_data  = &palmtc_gpio_led_info,
> > +       }
> > +};
> > +
> > +static void __init palmtc_leds_init(void)
> > +{
> > +       platform_device_register(&palmtc_leds);
> > +}
> > +#else
> > +static inline void palmtc_leds_init(void) {}
> > +#endif
> > +
> > +/***********************************************************************
> > ******* * NOR Flash
> >  ************************************************************************
> > ******/ #if defined(CONFIG_MTD_PHYSMAP) ||
> > defined(CONFIG_MTD_PHYSMAP_MODULE) @@ -502,6 +542,7 @@ static void
> > __init palmtc_init(void)
> >        palmtc_ts_init();
> >        palmtc_nor_init();
> >        palmtc_lcd_init();
> > +       palmtc_leds_init();
> >  };
> > 
> >  MACHINE_START(PALMTC, "Palm Tungsten|C")
> > --
> > 1.7.1

  reply	other threads:[~2010-10-10  2:04 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-09 22:39 [PATCH 01/13] ARM: pxa: Introduce pxa[23]xx_map_io Marek Vasut
2010-10-09 22:39 ` [PATCH 02/13] ARM: pxa: Access SMEMC via virtual addresses Marek Vasut
2010-10-10  0:31   ` Haojian Zhuang
2010-10-10  2:03     ` Marek Vasut
2010-10-09 22:39 ` [PATCH 03/13] ARM: pxa: Toradex Colibri PXA270 CF support Marek Vasut
2010-10-09 22:39 ` [PATCH 04/13] ARM: pxa: Push Colibri evalboard MFP into module files Marek Vasut
2010-10-09 22:39 ` [PATCH 05/13] ARM: pxa: Add M41T00 RTC support into Colibri evalboard Marek Vasut
2010-10-09 22:39 ` [PATCH 06/13] ARM: pxa: Rename " Marek Vasut
2010-10-09 22:39 ` [PATCH 07/13] ARM: pxa: Colibri PXA320 PCMCIA driver Marek Vasut
2010-10-09 22:39 ` [PATCH 08/13] ARM: pxa: Modularize Palm Tungsten|C Marek Vasut
2010-10-09 22:39 ` [PATCH 09/13] UCB1400: Pass ucb1400-gpio data through ac97 bus Marek Vasut
2010-10-09 22:39 ` [PATCH 10/13] ARM: pxa: Correct touch IRQ passing to UCB1400 on vpac270 Marek Vasut
2010-10-09 22:39 ` [PATCH 11/13] ARM: pxa: Pass GPIO offset to ucb1400-gpio on PalmTC Marek Vasut
2010-10-09 22:39 ` [PATCH 12/13] ARM: pxa: Add gpio-leds and vibrator support to PalmTC Marek Vasut
2010-10-10  0:34   ` Haojian Zhuang
2010-10-10  2:04     ` Marek Vasut [this message]
2010-10-09 22:39 ` [PATCH 13/13] ARM: pxa: Fix pxa2xx-flash section mismatch Marek Vasut
2010-10-10  0:32   ` Haojian Zhuang
2010-10-10  2:05     ` Marek Vasut
2010-10-10  7:38 ` [PATCH 01/13] ARM: pxa: Introduce pxa[23]xx_map_io Igor Grinberg
2010-10-10 18:16   ` Marek Vasut

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=201010100404.30467.marek.vasut@gmail.com \
    --to=marek.vasut@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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.