Commit ba4cd399 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

vivid: remove some unused vars

Gcc 6.1 warns about some unused vars. Remove them:
drivers/media/platform/vivid/vivid-vid-cap.c:40:2: warning: 'tpf_default' defined but not used [-Wunused-const-variable=]
  tpf_default = {.numerator = 1,  .denominator = 30};
  ^~~~~~~~~~~
drivers/media/platform/vivid/vivid-sdr-cap.c:54:27: warning: 'NUM_FORMATS' defined but not used [-Wunused-const-variable=]
 static const unsigned int NUM_FORMATS = ARRAY_SIZE(formats);
                           ^~~~~~~~~~~
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 40bcfdac
...@@ -51,8 +51,6 @@ static const struct vivid_format formats[] = { ...@@ -51,8 +51,6 @@ static const struct vivid_format formats[] = {
}, },
}; };
static const unsigned int NUM_FORMATS = ARRAY_SIZE(formats);
static const struct v4l2_frequency_band bands_adc[] = { static const struct v4l2_frequency_band bands_adc[] = {
{ {
.tuner = 0, .tuner = 0,
......
...@@ -36,8 +36,7 @@ ...@@ -36,8 +36,7 @@
/* timeperframe: min/max and default */ /* timeperframe: min/max and default */
static const struct v4l2_fract static const struct v4l2_fract
tpf_min = {.numerator = 1, .denominator = FPS_MAX}, tpf_min = {.numerator = 1, .denominator = FPS_MAX},
tpf_max = {.numerator = FPS_MAX, .denominator = 1}, tpf_max = {.numerator = FPS_MAX, .denominator = 1};
tpf_default = {.numerator = 1, .denominator = 30};
static const struct vivid_fmt formats_ovl[] = { static const struct vivid_fmt formats_ovl[] = {
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment