From 4f9f54f99dd6b4c9d9f78ac517741e96d67d6757 Mon Sep 17 00:00:00 2001 From: "Vladimir A. Barinov" Date: Wed, 25 May 2005 13:17:19 -0700 Subject: [PATCH] [PATCH] ARM: OMAP: LCD flicks on H3 This patch increments the pixel clock. The Pixel Clock Divisor (PCD) is a prescaler to the LCD clock that could be ranged from 2 and upper. It's need to set the minimum one to avoid visible flicks. Signed-off-by: Vladimir A. Barinov Signed-off-by: Tony Lindgren --- drivers/video/omap/lcd_h3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/omap/lcd_h3.c b/drivers/video/omap/lcd_h3.c index 27deb6a0553..e7e9fc50f0b 100644 --- a/drivers/video/omap/lcd_h3.c +++ b/drivers/video/omap/lcd_h3.c @@ -94,7 +94,7 @@ static struct lcdc_video_mode mode240x320 = { .vsw = 1, .vfp = 1, .vbp = 0, - .pcd = 4, + .pcd = 2, }; struct lcd_panel h3_panel = { -- 2.41.1