Re: (EXT) [PATCH] drm: mxsfb: Simplify LCDIF clock handling

2022-02-10 Thread Alexander Stein
Hi Marek, I like the overall idea. Thanks for the effort. Am Sonntag, 6. Februar 2022, 19:55:55 CET schrieb Marek Vasut: > The current clock handling in the LCDIF driver is a convoluted mess. > Implement runtime PM ops which turn the clock ON and OFF and let the > pm_runtime_get_sync()/pm_runtime

[PATCH] drm: mxsfb: Simplify LCDIF clock handling

2022-02-06 Thread Marek Vasut
The current clock handling in the LCDIF driver is a convoluted mess. Implement runtime PM ops which turn the clock ON and OFF and let the pm_runtime_get_sync()/pm_runtime_put_sync() calls in .atomic_enable and .atomic_disable callbacks turn the clock ON and OFF at the right time. Signed-off-by: Ma