[media] media: davinci: vpbe: missing clk_put
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Thu, 6 Nov 2014 13:04:27 +0000 (10:04 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 11 Nov 2014 10:48:21 +0000 (08:48 -0200)
commit47efeb52f78fd37df91d13e15296f8070d549f81
tree1371b1a43ee342b7f04494a4d65979d19ff99e00
parent24c4942d29c8b7ae344d094495019b5587275490
[media] media: davinci: vpbe: missing clk_put

we are getting struct clk using clk_get before calling
clk_prepare_enable. but if clk_prepare_enable fails, then we are
jumping to fail_mutex_unlock where we are just unlocking the mutex,
but we are not freeing the clock source.
this patch just adds a call to clk_put before jumping to
fail_mutex_unlock.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/davinci/vpbe.c