aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/davinci
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2010-04-07 06:21:05 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-19 12:57:05 -0300
commit2b080c5df00e431baec09222aa8d623f0cd77314 (patch)
treef4e187ea085fb54d2e6e72ca87a2eb3dbfccc67d /drivers/media/video/davinci
parent3f113e36106f133752de47208816b28aa8e60f88 (diff)
downloadkernel_samsung_smdk4412-2b080c5df00e431baec09222aa8d623f0cd77314.zip
kernel_samsung_smdk4412-2b080c5df00e431baec09222aa8d623f0cd77314.tar.gz
kernel_samsung_smdk4412-2b080c5df00e431baec09222aa8d623f0cd77314.tar.bz2
V4L/DVB: davinci: don't return under lock on error path
If the kmalloc() failed for "ccdc_cfg = kmalloc(...);" then we would exit with the lock held. I moved the mutex_lock() below the allocation because it isn't protecting anything in that block and allocations are allocations are sometimes slow. Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Vaibhav Hiremath <hvaibhav@ti.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/davinci')
-rw-r--r--drivers/media/video/davinci/vpfe_capture.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/davinci/vpfe_capture.c b/drivers/media/video/davinci/vpfe_capture.c
index d4676ad..f6648f6 100644
--- a/drivers/media/video/davinci/vpfe_capture.c
+++ b/drivers/media/video/davinci/vpfe_capture.c
@@ -1861,7 +1861,6 @@ static __init int vpfe_probe(struct platform_device *pdev)
goto probe_free_dev_mem;
}
- mutex_lock(&ccdc_lock);
/* Allocate memory for ccdc configuration */
ccdc_cfg = kmalloc(sizeof(struct ccdc_config), GFP_KERNEL);
if (NULL == ccdc_cfg) {
@@ -1870,6 +1869,8 @@ static __init int vpfe_probe(struct platform_device *pdev)
goto probe_free_lock;
}
+ mutex_lock(&ccdc_lock);
+
strncpy(ccdc_cfg->name, vpfe_cfg->ccdc, 32);
/* Get VINT0 irq resource */
res1 = platform_get_resource(pdev, IORESOURCE_IRQ, 0);