aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/dvb
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-08-31 14:21:43 -0400
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-09-05 06:01:54 -0400
commit13adefbe9e566c6db91579e4ce17f1e5193d6f2c (patch)
tree3d5a8741adde7453b0d3e6fd672b0fdead0f1df2 /include/uapi/linux/dvb
parent286fe1ca3fa1b6fcc7ce8695b7c8d681e6e1c3b7 (diff)
media: dmx.h: get rid of DMX_SET_SOURCE
No driver uses this ioctl, nor it is documented anywhere. So, get rid of it. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/uapi/linux/dvb')
-rw-r--r--include/uapi/linux/dvb/dmx.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/uapi/linux/dvb/dmx.h b/include/uapi/linux/dvb/dmx.h
index db8bd00c93de..08dc17060321 100644
--- a/include/uapi/linux/dvb/dmx.h
+++ b/include/uapi/linux/dvb/dmx.h
@@ -115,16 +115,6 @@ struct dmx_pes_filter_params
115 __u32 flags; 115 __u32 flags;
116}; 116};
117 117
118enum dmx_source {
119 DMX_SOURCE_FRONT0 = 0,
120 DMX_SOURCE_FRONT1,
121 DMX_SOURCE_FRONT2,
122 DMX_SOURCE_FRONT3,
123 DMX_SOURCE_DVR0 = 16,
124 DMX_SOURCE_DVR1,
125 DMX_SOURCE_DVR2,
126 DMX_SOURCE_DVR3
127};
128 118
129struct dmx_stc { 119struct dmx_stc {
130 unsigned int num; /* input : which STC? 0..N */ 120 unsigned int num; /* input : which STC? 0..N */
@@ -138,7 +128,6 @@ struct dmx_stc {
138#define DMX_SET_PES_FILTER _IOW('o', 44, struct dmx_pes_filter_params) 128#define DMX_SET_PES_FILTER _IOW('o', 44, struct dmx_pes_filter_params)
139#define DMX_SET_BUFFER_SIZE _IO('o', 45) 129#define DMX_SET_BUFFER_SIZE _IO('o', 45)
140#define DMX_GET_PES_PIDS _IOR('o', 47, __u16[5]) 130#define DMX_GET_PES_PIDS _IOR('o', 47, __u16[5])
141#define DMX_SET_SOURCE _IOW('o', 49, enum dmx_source)
142#define DMX_GET_STC _IOWR('o', 50, struct dmx_stc) 131#define DMX_GET_STC _IOWR('o', 50, struct dmx_stc)
143#define DMX_ADD_PID _IOW('o', 51, __u16) 132#define DMX_ADD_PID _IOW('o', 51, __u16)
144#define DMX_REMOVE_PID _IOW('o', 52, __u16) 133#define DMX_REMOVE_PID _IOW('o', 52, __u16)
@@ -150,7 +139,6 @@ typedef enum dmx_output dmx_output_t;
150typedef enum dmx_input dmx_input_t; 139typedef enum dmx_input dmx_input_t;
151typedef enum dmx_ts_pes dmx_pes_type_t; 140typedef enum dmx_ts_pes dmx_pes_type_t;
152typedef struct dmx_filter dmx_filter_t; 141typedef struct dmx_filter dmx_filter_t;
153typedef enum dmx_source dmx_source_t;
154 142
155#endif 143#endif
156 144