* Tomi Valkeinen <tomi.valkeinen@xxxxxx> [131222 23:55]: > On 2013-12-20 18:55, Tony Lindgren wrote: > > --- a/arch/arm/mach-omap2/board-ldp.c > > +++ b/arch/arm/mach-omap2/board-ldp.c > > @@ -248,7 +248,7 @@ static int ldp_twl_gpio_setup(struct device *dev, unsigned gpio, unsigned ngpio) > > /* Backlight enable GPIO */ > > ldp_lcd_pdata.backlight_gpio = gpio + 15; > > > > - return 0; > > + return platform_device_register(&ldp_lcd_device); > > If the panel device registration fails, does the whole TWL probe fail? > If so, that sounds a bit harsh to me. OK I've applied the updated version below which does not make the TWL GPIO probe to fail on errors. > Looks right to me: > > Acked-by: Tomi Valkeinen <tomi.valkeinen@xxxxxx> > > Rather ugly, though, but there's probably no point in trying to do it in > a cleaner way (the new GPIO API, I think?), as we'll move to DT soon. Yes we should not need the callbacks just to set TWL GPIO numbers when booted with DT so this problem will disappear. Updated patch below for reference, I kept your ack hope that's OK with you. Regards, Tony 8< -------------------------------- From: Tony Lindgren <tony@xxxxxxxxxxx> Date: Fri, 27 Dec 2013 09:33:27 -0800 Subject: [PATCH] ARM: OMAP2+: Fix LCD panel backlight regression for LDP legacy booting Looks like the LCD panel on LDP has been broken quite a while, and recently got fixed by commit 0b2aa8bed3e1 (gpio: twl4030: Fix regression for twl gpio output). However, there's still an issue left where the panel backlight does not come on if the LCD drivers are built into the kernel. Fix the issue by registering the DPI LCD panel only after the twl4030 GPIO has probed. Reported-by: Russell King <rmk+kernel@xxxxxxxxxxxxxxxx> Acked-by: Tomi Valkeinen <tomi.valkeinen@xxxxxx> [tony@xxxxxxxxxxx: updated per Tomi's comments] Signed-off-by: Tony Lindgren <tony@xxxxxxxxxxx> --- a/arch/arm/mach-omap2/board-ldp.c +++ b/arch/arm/mach-omap2/board-ldp.c @@ -242,12 +242,18 @@ static void __init ldp_display_init(void) static int ldp_twl_gpio_setup(struct device *dev, unsigned gpio, unsigned ngpio) { + int res; + /* LCD enable GPIO */ ldp_lcd_pdata.enable_gpio = gpio + 7; /* Backlight enable GPIO */ ldp_lcd_pdata.backlight_gpio = gpio + 15; + res = platform_device_register(&ldp_lcd_device); + if (res) + pr_err("Unable to register LCD: %d\n", res); + return 0; } @@ -346,7 +352,6 @@ static struct omap2_hsmmc_info mmc[] __initdata = { static struct platform_device *ldp_devices[] __initdata = { &ldp_gpio_keys_device, - &ldp_lcd_device, }; #ifdef CONFIG_OMAP_MUX -- 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