From: Todd Poynor Date: Tue, 20 Dec 2005 12:14:19 +0000 (+0200) Subject: omapfb: Change the clocking of the LCD panel on H3 X-Git-Tag: v2.6.15-omap2~42 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=4dd59dd7803e3ceaa2b20823a2791f5ef3133fa6;p=linux-2.6-omap-h63xx.git omapfb: Change the clocking of the LCD panel on H3 Set pixel clock to 12000, disable usage of the pcd field. Tux logo appears fine and so does IceWM under Xfbdev. Signed-off-by: Todd Poynor Signed-off-by: Juha Yrjölä --- diff --git a/drivers/video/omap/lcd_h3.c b/drivers/video/omap/lcd_h3.c index 78b10c0b5f9..f6e8e62020d 100644 --- a/drivers/video/omap/lcd_h3.c +++ b/drivers/video/omap/lcd_h3.c @@ -94,14 +94,14 @@ struct lcd_panel h3_panel = { .bpp = 16, .x_res = 240, .y_res = 320, - .pixel_clock = 12500, + .pixel_clock = 12000, .hsw = 12, .hfp = 14, .hbp = 72 - 12, .vsw = 1, .vfp = 1, .vbp = 0, - .pcd = 2, + .pcd = 0, .init = h3_panel_init, .cleanup = h3_panel_cleanup,