Skip to content

Commit

Permalink
video: vt8500: Adjust contrast in wm8505 framebuffer driver.
Browse files Browse the repository at this point in the history
The contrast value was typo'd on the original commit (0x80 instead of
0x08). Following feedback from an enduser, a value of 0x10 seems more
suitable due to the default backlight being <100%.

Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Reviewed-by: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
  • Loading branch information
Tony Prisk authored and Tomi Valkeinen committed Apr 4, 2013
1 parent 9e340fd commit de68efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/wm8505fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ static int wm8505fb_probe(struct platform_device *pdev)
fbi->fb.screen_base = fb_mem_virt;
fbi->fb.screen_size = fb_mem_len;

fbi->contrast = 0x80;
fbi->contrast = 0x10;
ret = wm8505fb_set_par(&fbi->fb);
if (ret) {
dev_err(&pdev->dev, "Failed to set parameters\n");
Expand Down

0 comments on commit de68efc

Please sign in to comment.