* Enric Balletbo i Serra <eballetbo@xxxxxxxxx> [101001 12:38]: > The IGEP v2 board has four leds, this patch allows control all > of these LEDs using the LED class if CONFIG_LEDS_GPIO is selected > or using the General Purpose Input/Output (GPIO) interface if > CONFIG_LEDS_GPIO is not selected. > > Signed-off-by: Enric Balletbo i Serra <eballetbo@xxxxxxxxx> > --- > arch/arm/mach-omap2/board-igep0020.c | 156 +++++++++++++++++++--------------- > 1 files changed, 87 insertions(+), 69 deletions(-) > > diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c > index 1052a63..9f25d0d 100644 > --- a/arch/arm/mach-omap2/board-igep0020.c > +++ b/arch/arm/mach-omap2/board-igep0020.c > @@ -261,6 +261,77 @@ static struct omap2_hsmmc_info mmc[] = { > {} /* Terminator */ > }; > > +#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) > +#include <linux/leds.h> > + > +static struct gpio_led igep2_gpio_leds[] = { > + [0] = { > + .name = "gpio-led:red:d0", > + .gpio = IGEP2_GPIO_LED0_RED, > + .default_trigger = "default-off" > + }, > + [1] = { > + .name = "gpio-led:green:d0", > + .gpio = IGEP2_GPIO_LED0_GREEN, > + .default_trigger = "default-off", > + }, > + [2] = { > + .name = "gpio-led:red:d1", > + .gpio = IGEP2_GPIO_LED1_RED, > + .default_trigger = "default-off", > + }, > + [3] = { > + .name = "gpio-led:green:d1", > + .default_trigger = "heartbeat", > + .gpio = -EINVAL, /* gets replaced */ > + }, > +}; Please align the igep2_gpio_leds with tabs like you do already below. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html