drivers/staging/media/bcm2048/radio-bcm2048.c: In function 
'bcm2048_i2c_driver_probe':
drivers/staging/media/bcm2048/radio-bcm2048.c:2596:11: warning: variable 
'skip_release' set but not used [-Wunused-but-set-variable]
  int err, skip_release = 0;
           ^

Signed-off-by: Mauro Carvalho Chehab <mche...@osg.samsung.com>

diff --git a/drivers/staging/media/bcm2048/radio-bcm2048.c 
b/drivers/staging/media/bcm2048/radio-bcm2048.c
index e9d0691b21d3..5e11a78ceef3 100644
--- a/drivers/staging/media/bcm2048/radio-bcm2048.c
+++ b/drivers/staging/media/bcm2048/radio-bcm2048.c
@@ -2593,7 +2593,7 @@ static int bcm2048_i2c_driver_probe(struct i2c_client 
*client,
                                        const struct i2c_device_id *id)
 {
        struct bcm2048_device *bdev;
-       int err, skip_release = 0;
+       int err;
 
        bdev = kzalloc(sizeof(*bdev), GFP_KERNEL);
        if (!bdev) {
@@ -2646,7 +2646,6 @@ free_sysfs:
        bcm2048_sysfs_unregister_properties(bdev, ARRAY_SIZE(attrs));
 free_registration:
        video_unregister_device(&bdev->videodev);
-       skip_release = 1;
 free_irq:
        if (client->irq)
                free_irq(client->irq, bdev);
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to