aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
authorMarek Szyprowski <m.szyprowski@samsung.com>2010-09-05 02:42:33 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-09-30 07:22:41 -0300
commitcc6e853c5e49ea3698e87415672d818c6d7a5ee9 (patch)
tree05cd455afdb2ba8ce821a25441238c47224c6996 /drivers/media/radio
parentb2b476f53a9d24b00a313adf7f6ca92515a2af54 (diff)
downloadkernel_samsung_smdk4412-cc6e853c5e49ea3698e87415672d818c6d7a5ee9.zip
kernel_samsung_smdk4412-cc6e853c5e49ea3698e87415672d818c6d7a5ee9.tar.gz
kernel_samsung_smdk4412-cc6e853c5e49ea3698e87415672d818c6d7a5ee9.tar.bz2
V4L/DVB: v4l: radio: si470x: fix unneeded free_irq() call
In case of error during probe() the driver calls free_irq() function on not yet allocated irq. This patches fixes the call sequence in case of the error. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/si470x/radio-si470x-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/si470x/radio-si470x-i2c.c b/drivers/media/radio/si470x/radio-si470x-i2c.c
index 67a4ec8..4ce541a 100644
--- a/drivers/media/radio/si470x/radio-si470x-i2c.c
+++ b/drivers/media/radio/si470x/radio-si470x-i2c.c
@@ -395,7 +395,7 @@ static int __devinit si470x_i2c_probe(struct i2c_client *client,
radio->registers[POWERCFG] = POWERCFG_ENABLE;
if (si470x_set_register(radio, POWERCFG) < 0) {
retval = -EIO;
- goto err_all;
+ goto err_video;
}
msleep(110);