[PATCH] drm: zte: Fix an error handling path in 'zx_crtc_bind()'

2018-03-13 Thread Christophe JAILLET
'ret' is known to be 0 at this point. It must be updated by the value returned by 'clk_prepare_enable()'. Fixes: 0a886f59528a ("drm: zte: add initial vou drm driver") Signed-off-by: Christophe JAILLET --- drivers/gpu/drm/zte/zx_vou.c | 2 +- 1 file changed, 1

Re: [PATCH] drm: zte: Fix an error handling path in 'zx_crtc_bind()'

2018-03-12 Thread Shawn Guo
+ Daniel On Sun, Mar 11, 2018 at 11:32:03PM +0100, Christophe JAILLET wrote: > 'ret' is known to be 0 at this point. It must be updated by the value > returned by 'clk_prepare_enable()'. > > Fixes: 0a886f59528a ("drm: zte: add initial vou drm driver") > Signed-off-by: Christophe JAILLET