From: <mar...@us...> - 2007-03-09 21:25:29
|
Revision: 901 http://svn.sourceforge.net/hackndev/?rev=901&view=rev Author: marex_z71 Date: 2007-03-09 13:25:11 -0800 (Fri, 09 Mar 2007) Log Message: ----------- PalmLD: Fixed backlight oops problem Modified Paths: -------------- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c Modified: linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c =================================================================== --- linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-03-09 20:57:22 UTC (rev 900) +++ linux4palm/linux/trunk/arch/arm/mach-pxa/palmld/palmld.c 2007-03-09 21:25:11 UTC (rev 901) @@ -169,11 +169,11 @@ static struct pxapwmbl_platform_data palmld_backlight_data = { .pwm = 0, - .max_intensity = 0x120, - .default_intensity = 0x11a, + .max_intensity = 0xff, + .default_intensity = 0x7f, .limit_mask = 0x7f, - .prescaler = 7, - .period = 0x16c, + .prescaler = 1, + .period = 0x12c, }; static struct platform_device palmld_backlight = { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |