diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-10-07 00:36:20 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-10-07 00:49:37 +0300 |
commit | 1e92bbe08ad9fc0d5ec05174c176a9bc54921733 (patch) | |
tree | 116e02636364770b59657f5a3e73c387a9bb96b8 /drivers/media/dvb-core/demux.h | |
parent | 28cff82ce2811a15bbaa4e978c64a231ddc71880 (diff) | |
download | linux-1e92bbe08ad9fc0d5ec05174c176a9bc54921733.tar.xz |
[media] dvb: don't keep support for undocumented features
There are two DVB demux callbacks and ioctls that aren't documented
and aren't used at all by the DVB core or by any DVB driver upstream.
Let's comment out the code for those two ioctls and remove on some
future version.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-core/demux.h')
-rw-r--r-- | drivers/media/dvb-core/demux.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/dvb-core/demux.h b/drivers/media/dvb-core/demux.h index ca56d1cc57bd..53c82514ede5 100644 --- a/drivers/media/dvb-core/demux.h +++ b/drivers/media/dvb-core/demux.h @@ -411,10 +411,12 @@ struct dmx_demux { int (*get_pes_pids) (struct dmx_demux* demux, u16 *pids); + /* private: Not used upstream and never documented */ +#if 0 int (*get_caps) (struct dmx_demux* demux, struct dmx_caps *caps); - int (*set_source) (struct dmx_demux* demux, const dmx_source_t *src); - +#endif + /* public: */ int (*get_stc) (struct dmx_demux* demux, unsigned int num, u64 *stc, unsigned int *base); }; |