summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-core/dvb_frontend.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-12-26 16:43:32 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-12-31 10:00:40 -0200
commitb1e9a650104111036ac7176024c8bb685882fe02 (patch)
treeaf54ebc5eb26fb1587aa5d614eb2995a36ebadd9 /drivers/media/dvb/dvb-core/dvb_frontend.c
parent0009e0e3e60b1e4e781e5bc5efd09b48cb397c7f (diff)
downloadlinux-b1e9a650104111036ac7176024c8bb685882fe02.tar.gz
linux-b1e9a650104111036ac7176024c8bb685882fe02.tar.bz2
linux-b1e9a650104111036ac7176024c8bb685882fe02.zip
[media] dvb-core: remove get|set_frontend_legacy
Now that all drivers were converted, we can get rid of those emulation calls. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-core/dvb_frontend.c')
-rw-r--r--drivers/media/dvb/dvb-core/dvb_frontend.c24
1 files changed, 4 insertions, 20 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c
index 7246c914a70c..cb57c03401be 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.c
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.c
@@ -145,7 +145,7 @@ static int dtv_get_frontend(struct dvb_frontend *fe,
static bool has_get_frontend(struct dvb_frontend *fe)
{
- return fe->ops.get_frontend || fe->ops.get_frontend_legacy;
+ return fe->ops.get_frontend;
}
static void dvb_frontend_add_event(struct dvb_frontend *fe, fe_status_t status)
@@ -361,8 +361,6 @@ static int dvb_frontend_swzigzag_autotune(struct dvb_frontend *fe, int check_wra
fepriv->parameters_in.inversion = fepriv->inversion;
if (fe->ops.set_frontend)
fe_set_err = fe->ops.set_frontend(fe);
- else if (fe->ops.set_frontend_legacy)
- fe_set_err = fe->ops.set_frontend_legacy(fe, &fepriv->parameters_in);
fepriv->parameters_out = fepriv->parameters_in;
if (fe_set_err < 0) {
fepriv->state = FESTATE_ERROR;
@@ -394,9 +392,6 @@ static void dvb_frontend_swzigzag(struct dvb_frontend *fe)
if (fepriv->state & FESTATE_RETUNE) {
if (fe->ops.set_frontend)
retval = fe->ops.set_frontend(fe);
- else if (fe->ops.set_frontend_legacy)
- retval = fe->ops.set_frontend_legacy(fe,
- &fepriv->parameters_in);
fepriv->parameters_out = fepriv->parameters_in;
if (retval < 0)
fepriv->state = FESTATE_ERROR;
@@ -1271,7 +1266,6 @@ static int dtv_get_frontend(struct dvb_frontend *fe,
const struct dtv_frontend_properties *cache = &fe->dtv_property_cache;
struct dtv_frontend_properties tmp_cache;
struct dvb_frontend_parameters tmp_out;
- bool fill_cache = (c != NULL);
bool fill_params = (p_out != NULL);
int r;
@@ -1283,7 +1277,6 @@ static int dtv_get_frontend(struct dvb_frontend *fe,
else
memcpy(c, cache, sizeof(*c));
- /* Then try the DVBv5 one */
if (fe->ops.get_frontend) {
r = fe->ops.get_frontend(fe, c);
if (unlikely(r < 0))
@@ -1293,17 +1286,8 @@ static int dtv_get_frontend(struct dvb_frontend *fe,
return 0;
}
- /* As no DVBv5 call exists, use the DVBv3 one */
- if (fe->ops.get_frontend_legacy) {
- r = fe->ops.get_frontend_legacy(fe, p_out);
- if (unlikely(r < 0))
- return r;
- if (fill_cache)
- dtv_property_cache_sync(fe, c, p_out);
- return 0;
- }
-
- return -EOPNOTSUPP;
+ /* As everything is in cache, this is always supported */
+ return 0;
}
static int dvb_frontend_ioctl_legacy(struct file *file,
@@ -1758,7 +1742,7 @@ static int dvb_frontend_ioctl_properties(struct file *file,
/*
* Fills the cache out struct with the cache contents, plus
- * the data retrieved from get_frontend/get_frontend_legacy.
+ * the data retrieved from get_frontend.
*/
dtv_get_frontend(fe, &cache_out, NULL);
for (i = 0; i < tvps->num; i++) {