Commit 59b94f3e authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] xc5000: better name the functions

xc5000_set_params() is a bad name for a function that
handles only digital TV. Rename it to xc5000_set_digital_params(),
and proper name the generic function that works for both
digital and analog.

No functional changes.
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 7ab1c076
...@@ -754,7 +754,7 @@ static int xc5000_tune_digital(struct dvb_frontend *fe) ...@@ -754,7 +754,7 @@ static int xc5000_tune_digital(struct dvb_frontend *fe)
return 0; return 0;
} }
static int xc5000_set_params(struct dvb_frontend *fe) static int xc5000_set_digital_params(struct dvb_frontend *fe)
{ {
int b; int b;
struct xc5000_priv *priv = fe->tuner_priv; struct xc5000_priv *priv = fe->tuner_priv;
...@@ -1036,7 +1036,7 @@ static int xc5000_set_radio_freq(struct dvb_frontend *fe) ...@@ -1036,7 +1036,7 @@ static int xc5000_set_radio_freq(struct dvb_frontend *fe)
return 0; return 0;
} }
static int xc5000_apply_params(struct dvb_frontend *fe) static int xc5000_set_params(struct dvb_frontend *fe)
{ {
struct xc5000_priv *priv = fe->tuner_priv; struct xc5000_priv *priv = fe->tuner_priv;
...@@ -1080,7 +1080,7 @@ static int xc5000_set_analog_params(struct dvb_frontend *fe, ...@@ -1080,7 +1080,7 @@ static int xc5000_set_analog_params(struct dvb_frontend *fe,
} }
priv->mode = params->mode; priv->mode = params->mode;
return xc5000_apply_params(fe); return xc5000_set_params(fe);
} }
static int xc5000_get_frequency(struct dvb_frontend *fe, u32 *freq) static int xc5000_get_frequency(struct dvb_frontend *fe, u32 *freq)
...@@ -1354,10 +1354,10 @@ static const struct dvb_tuner_ops xc5000_tuner_ops = { ...@@ -1354,10 +1354,10 @@ static const struct dvb_tuner_ops xc5000_tuner_ops = {
.init = xc5000_init, .init = xc5000_init,
.sleep = xc5000_sleep, .sleep = xc5000_sleep,
.suspend = xc5000_suspend, .suspend = xc5000_suspend,
.resume = xc5000_apply_params, .resume = xc5000_set_params,
.set_config = xc5000_set_config, .set_config = xc5000_set_config,
.set_params = xc5000_set_params, .set_params = xc5000_set_digital_params,
.set_analog_params = xc5000_set_analog_params, .set_analog_params = xc5000_set_analog_params,
.get_frequency = xc5000_get_frequency, .get_frequency = xc5000_get_frequency,
.get_if_frequency = xc5000_get_if_frequency, .get_if_frequency = xc5000_get_if_frequency,
......
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