dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Mauro Carvalho Chehab 2012-10-27 14:04:24 -03:00
parent d4c06133af
commit fb1546e037
1 changed files with 0 additions and 5 deletions

View File

@ -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);