Re: [PATCH v2 10/24] video: da8xx-fb: fb_set_par support
From: Tomi Valkeinen <hidden>
Date: 2013-08-01 05:44:00
Attachments
- signature.asc [application/pgp-signature] 901 bytes
From: Tomi Valkeinen <hidden>
Date: 2013-08-01 05:44:00
On 31/07/13 21:56, Etheridge, Darren wrote:
quoted
quoted
+static int da8xxfb_set_par(struct fb_info *info) { + struct da8xx_fb_par *par = info->par; + int ret; + bool raster = da8xx_fb_is_raster_enabled(); + + if (raster) + lcd_disable_raster(true); + else + lcd_disable_raster(false);This looks odd. If raster is enabled, you disable it. And if raster is disabled, you disable it.I corrected this one in patch 0011 - I agree this code is very confusing.
In patch 11 you add the enum. I wasn't referring to that. My point was that even if raster is already disabled, lcd_disable_raster(dont-wait-for-framedone) is called. Tomi