diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-04-02 18:17:17 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-04-02 22:03:44 -0700 |
commit | beca98c93dc8d838c3656bc62fd49b45622ef788 (patch) | |
tree | 0b5f1271281bb32d902bc01a7eb9e7079e22da61 /arch/arm/mach-sa1100/collie.c | |
parent | ee5324ea33d373558da43a22f3c1074a5fd5496e (diff) | |
download | linux-beca98c93dc8d838c3656bc62fd49b45622ef788.tar.bz2 |
ARM: fix lcd power build failure in collie_defconfig
Commit 086ada54abaa4316e8603f02410fe8ebc9ba2de1
"FB: sa1100: remove global sa1100fb_.*_power function pointers"
got rid of all instances but one in locomolcd.c -- which was
conditional on CONFIG_SA1100_COLLIE. The associated .power
field which replaces the global is populated in mach-sa1100/collie.c
so move the assignment there, but make it conditional on the
locomolcd support, so use CONFIG_BACKLIGHT_LOCOMO in that file.
Cc: arm@kernel.org
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-sa1100/collie.c')
-rw-r--r-- | arch/arm/mach-sa1100/collie.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/collie.c b/arch/arm/mach-sa1100/collie.c index 48885b7efd6b..c7f418b0cde9 100644 --- a/arch/arm/mach-sa1100/collie.c +++ b/arch/arm/mach-sa1100/collie.c @@ -313,6 +313,10 @@ static struct sa1100fb_mach_info collie_lcd_info = { .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act, .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(2), + +#ifdef CONFIG_BACKLIGHT_LOCOMO + .lcd_power = locomolcd_power +#endif }; static void __init collie_init(void) |