Commit 8239bac1 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: cxd2880: remove unused vars

drivers/media/dvb-frontends/cxd2880/cxd2880_top.c: In function ‘cxd2880_set_ber_per_period_t’:
drivers/media/dvb-frontends/cxd2880/cxd2880_top.c:677:34: warning: variable ‘c’ set but not used [-Wunused-but-set-variable]
  struct dtv_frontend_properties *c;
                                  ^
drivers/media/dvb-frontends/cxd2880/cxd2880_top.c: In function ‘cxd2880_set_ber_per_period_t2’:
drivers/media/dvb-frontends/cxd2880/cxd2880_top.c:790:34: warning: variable ‘c’ set but not used [-Wunused-but-set-variable]
  struct dtv_frontend_properties *c;
                                  ^
drivers/media/dvb-frontends/cxd2880/cxd2880_top.c: In function ‘cxd2880_get_frontend’:
drivers/media/dvb-frontends/cxd2880/cxd2880_top.c:1799:23: warning: variable ‘priv’ set but not used [-Wunused-but-set-variable]
  struct cxd2880_priv *priv = NULL;
                       ^~~~
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 9ca4897b
...@@ -674,7 +674,6 @@ static int cxd2880_read_ber(struct dvb_frontend *fe, u32 *ber) ...@@ -674,7 +674,6 @@ static int cxd2880_read_ber(struct dvb_frontend *fe, u32 *ber)
static int cxd2880_set_ber_per_period_t(struct dvb_frontend *fe) static int cxd2880_set_ber_per_period_t(struct dvb_frontend *fe)
{ {
int ret; int ret;
struct dtv_frontend_properties *c;
struct cxd2880_priv *priv; struct cxd2880_priv *priv;
struct cxd2880_dvbt_tpsinfo info; struct cxd2880_dvbt_tpsinfo info;
enum cxd2880_dtv_bandwidth bw = CXD2880_DTV_BW_1_7_MHZ; enum cxd2880_dtv_bandwidth bw = CXD2880_DTV_BW_1_7_MHZ;
...@@ -691,7 +690,6 @@ static int cxd2880_set_ber_per_period_t(struct dvb_frontend *fe) ...@@ -691,7 +690,6 @@ static int cxd2880_set_ber_per_period_t(struct dvb_frontend *fe)
} }
priv = fe->demodulator_priv; priv = fe->demodulator_priv;
c = &fe->dtv_property_cache;
bw = priv->dvbt_tune_param.bandwidth; bw = priv->dvbt_tune_param.bandwidth;
ret = cxd2880_tnrdmd_dvbt_mon_tps_info(&priv->tnrdmd, ret = cxd2880_tnrdmd_dvbt_mon_tps_info(&priv->tnrdmd,
...@@ -787,7 +785,6 @@ static int cxd2880_set_ber_per_period_t(struct dvb_frontend *fe) ...@@ -787,7 +785,6 @@ static int cxd2880_set_ber_per_period_t(struct dvb_frontend *fe)
static int cxd2880_set_ber_per_period_t2(struct dvb_frontend *fe) static int cxd2880_set_ber_per_period_t2(struct dvb_frontend *fe)
{ {
int ret; int ret;
struct dtv_frontend_properties *c;
struct cxd2880_priv *priv; struct cxd2880_priv *priv;
struct cxd2880_dvbt2_l1pre l1pre; struct cxd2880_dvbt2_l1pre l1pre;
struct cxd2880_dvbt2_l1post l1post; struct cxd2880_dvbt2_l1post l1post;
...@@ -815,7 +812,6 @@ static int cxd2880_set_ber_per_period_t2(struct dvb_frontend *fe) ...@@ -815,7 +812,6 @@ static int cxd2880_set_ber_per_period_t2(struct dvb_frontend *fe)
} }
priv = fe->demodulator_priv; priv = fe->demodulator_priv;
c = &fe->dtv_property_cache;
bw = priv->dvbt2_tune_param.bandwidth; bw = priv->dvbt2_tune_param.bandwidth;
ret = cxd2880_tnrdmd_dvbt2_mon_l1_pre(&priv->tnrdmd, &l1pre); ret = cxd2880_tnrdmd_dvbt2_mon_l1_pre(&priv->tnrdmd, &l1pre);
...@@ -1796,7 +1792,6 @@ static int cxd2880_get_frontend_t2(struct dvb_frontend *fe, ...@@ -1796,7 +1792,6 @@ static int cxd2880_get_frontend_t2(struct dvb_frontend *fe,
static int cxd2880_get_frontend(struct dvb_frontend *fe, static int cxd2880_get_frontend(struct dvb_frontend *fe,
struct dtv_frontend_properties *props) struct dtv_frontend_properties *props)
{ {
struct cxd2880_priv *priv = NULL;
int ret; int ret;
if (!fe || !props) { if (!fe || !props) {
...@@ -1804,8 +1799,6 @@ static int cxd2880_get_frontend(struct dvb_frontend *fe, ...@@ -1804,8 +1799,6 @@ static int cxd2880_get_frontend(struct dvb_frontend *fe,
return -EINVAL; return -EINVAL;
} }
priv = fe->demodulator_priv;
pr_debug("system=%d\n", fe->dtv_property_cache.delivery_system); pr_debug("system=%d\n", fe->dtv_property_cache.delivery_system);
switch (fe->dtv_property_cache.delivery_system) { switch (fe->dtv_property_cache.delivery_system) {
case SYS_DVBT: case SYS_DVBT:
......
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