mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
usbvision: remove some unused vars
Gcc 6.1 warns about some unused vars. Remove them: drivers/media/usb/usbvision/usbvision-core.c:94:18: warning: 'min_imgheight' defined but not used [-Wunused-const-variable=] static const int min_imgheight = MIN_FRAME_HEIGHT; ^~~~~~~~~~~~~ drivers/media/usb/usbvision/usbvision-core.c:93:18: warning: 'min_imgwidth' defined but not used [-Wunused-const-variable=] static const int min_imgwidth = MIN_FRAME_WIDTH; ^~~~~~~~~~~~ drivers/media/usb/usbvision/usbvision-core.c:92:18: warning: 'max_imgheight' defined but not used [-Wunused-const-variable=] static const int max_imgheight = MAX_FRAME_HEIGHT; ^~~~~~~~~~~~~ drivers/media/usb/usbvision/usbvision-core.c:91:18: warning: 'max_imgwidth' defined but not used [-Wunused-const-variable=] static const int max_imgwidth = MAX_FRAME_WIDTH; ^~~~~~~~~~~~ Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
0db5c79989
commit
d69bb093a7
@ -88,11 +88,6 @@ MODULE_PARM_DESC(adjust_y_offset, "adjust Y offset display [core]");
|
||||
#define DBG_SCRATCH (1 << 4)
|
||||
#define DBG_FUNC (1 << 5)
|
||||
|
||||
static const int max_imgwidth = MAX_FRAME_WIDTH;
|
||||
static const int max_imgheight = MAX_FRAME_HEIGHT;
|
||||
static const int min_imgwidth = MIN_FRAME_WIDTH;
|
||||
static const int min_imgheight = MIN_FRAME_HEIGHT;
|
||||
|
||||
/* The value of 'scratch_buf_size' affects quality of the picture
|
||||
* in many ways. Shorter buffers may cause loss of data when client
|
||||
* is too slow. Larger buffers are memory-consuming and take longer
|
||||
|
Loading…
Reference in New Issue
Block a user