diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 14:04:24 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 18:12:13 -0200 |
commit | fb1546e0376d6274cc2895a492d316679d409410 (patch) | |
tree | 6101854fd195f7ccc169918eb7e9ed6394d382ae /drivers/media/usb | |
parent | d4c06133af03de45182d689230eb7e7e0184c966 (diff) | |
download | op-kernel-dev-fb1546e0376d6274cc2895a492d316679d409410.zip op-kernel-dev-fb1546e0376d6274cc2895a492d316679d409410.tar.gz |
[media] cx231xx-avcore: get rid of a sophisticated do-nothing code
drivers/media/usb/cx231xx/cx231xx-avcore.c: In function 'cx231xx_capture_start':
drivers/media/usb/cx231xx/cx231xx-avcore.c:2637:3: warning: suggest braces around empty body in an 'else' statement [-Wempty-body]
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb')
-rw-r--r-- | drivers/media/usb/cx231xx/cx231xx-avcore.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-avcore.c b/drivers/media/usb/cx231xx/cx231xx-avcore.c index d34dbcf..7222079 100644 --- a/drivers/media/usb/cx231xx/cx231xx-avcore.c +++ b/drivers/media/usb/cx231xx/cx231xx-avcore.c @@ -2631,11 +2631,6 @@ int cx231xx_capture_start(struct cx231xx *dev, int start, u8 media_type) rc = cx231xx_stop_stream(dev, ep_mask); } - if (dev->mode == CX231XX_ANALOG_MODE) - ;/* do any in Analog mode */ - else - ;/* do any in digital mode */ - return rc; } EXPORT_SYMBOL_GPL(cx231xx_capture_start); |