summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/dvb-core/dvbdev.h
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/dvbdev.h
parent8d9b2584ffd270da14671ff6a2b25dd40dcc41de (diff)
downloadop-kernel-dev-9468542bf29ba6cdc9d052a7b9aa384279b0f845.zip
op-kernel-dev-9468542bf29ba6cdc9d052a7b9aa384279b0f845.tar.gz
[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/dvbdev.h')
-rw-r--r--drivers/media/dvb/dvb-core/dvbdev.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/media/dvb/dvb-core/dvbdev.h b/drivers/media/dvb/dvb-core/dvbdev.h
index fcc6ae9..3b2c137 100644
--- a/drivers/media/dvb/dvb-core/dvbdev.h
+++ b/drivers/media/dvb/dvb-core/dvbdev.h
@@ -76,7 +76,6 @@ struct dvb_adapter {
* after the core handles an ioctl:
*
* DVB_FE_IOCTL_PRE indicates that the ioctl has not yet been handled.
- * DVB_FE_IOCTL_POST indicates that the ioctl has been handled.
*
* When DVB_FE_IOCTL_PRE is passed to the callback as the stage arg:
*
@@ -86,14 +85,10 @@ struct dvb_adapter {
* return a negative int to prevent dvb-core from handling the ioctl,
* and return that value as an error.
*
- * When DVB_FE_IOCTL_POST is passed to the callback as the stage arg:
- *
- * return 0 to allow the dvb_frontend ioctl handler to exit normally.
- * return a negative int to cause the dvb_frontend ioctl handler to
- * return that value as an error.
+ * WARNING: Don't use it on newer drivers: this only affects DVBv3
+ * calls, and should be removed soon.
*/
#define DVB_FE_IOCTL_PRE 0
-#define DVB_FE_IOCTL_POST 1
int (*fe_ioctl_override)(struct dvb_frontend *fe,
unsigned int cmd, void *parg,
unsigned int stage);
OpenPOWER on IntegriCloud