summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-core/dvb_frontend.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2012-08-05 14:16:29 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-08-12 07:33:30 -0300
commit9468542bf29ba6cdc9d052a7b9aa384279b0f845 (patch)
tree66e25529f0bc77e67c3b2ed898b406c72041a9f0 /drivers/media/dvb/dvb-core/dvb_frontend.c
parent8d9b2584ffd270da14671ff6a2b25dd40dcc41de (diff)
downloadlinux-9468542bf29ba6cdc9d052a7b9aa384279b0f845.tar.gz
linux-9468542bf29ba6cdc9d052a7b9aa384279b0f845.tar.bz2
linux-9468542bf29ba6cdc9d052a7b9aa384279b0f845.zip
[media] dvb core: remove support for post FE legacy ioctl intercept
This DVB_FE_IOCTL_POST isn't used, so remove it. Also, intercepting ioctl's like that only works with legacy ioctl's, due to the way it was implemented. so this design is broken. Document it. 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.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c
index aebcdf221dda..746dfd86aeab 100644
--- a/drivers/media/dvb/dvb-core/dvb_frontend.c
+++ b/drivers/media/dvb/dvb-core/dvb_frontend.c
@@ -2287,13 +2287,6 @@ static int dvb_frontend_ioctl_legacy(struct file *file,
break;
};
- if (fe->dvb->fe_ioctl_override) {
- cb_err = fe->dvb->fe_ioctl_override(fe, cmd, parg,
- DVB_FE_IOCTL_POST);
- if (cb_err < 0)
- return cb_err;
- }
-
return err;
}