aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dvb
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-09-12 00:34:28 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 07:37:05 -0400
commit363429a089590f3f4071ebc492b3712fdcba770b (patch)
tree10e1a3b0246a22d95441ad697a14ff24f2f8e87d /include/linux/dvb
parent80a773c9bcc6f67944e186de3d2ab8b582889bc8 (diff)
V4L/DVB (9003): S2API: Remove the DTV_SET_ and DTV_GET_ prefixes
The API now assumes that ioctl calls for FE_SET_PROPERTY and all set commands, and FE_GET_PROPERTY are get commands. Simplification. Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/linux/dvb')
-rw-r--r--include/linux/dvb/frontend.h67
1 files changed, 27 insertions, 40 deletions
diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h
index e4f211735ef..05bdec9bc5a 100644
--- a/include/linux/dvb/frontend.h
+++ b/include/linux/dvb/frontend.h
@@ -255,52 +255,39 @@ typedef enum dtv_cmd_types {
255 DTV_TUNE, 255 DTV_TUNE,
256 DTV_CLEAR, 256 DTV_CLEAR,
257 257
258 DTV_SET_FREQUENCY, 258 DTV_FREQUENCY,
259 DTV_SET_MODULATION, 259 DTV_MODULATION,
260 DTV_SET_BANDWIDTH, 260 DTV_BANDWIDTH,
261 DTV_SET_INVERSION, 261 DTV_INVERSION,
262 DTV_SET_DISEQC_MASTER, 262 DTV_DISEQC_MASTER,
263 DTV_SET_SYMBOL_RATE, 263 DTV_SYMBOL_RATE,
264 DTV_SET_INNER_FEC, 264 DTV_INNER_FEC,
265 DTV_SET_VOLTAGE, 265 DTV_VOLTAGE,
266 DTV_SET_TONE, 266 DTV_TONE,
267 DTV_SET_PILOT, 267 DTV_PILOT,
268 DTV_SET_ROLLOFF, 268 DTV_ROLLOFF,
269 269
270 DTV_GET_FREQUENCY, 270 DTV_DISEQC_SLAVE_REPLY,
271 DTV_GET_MODULATION,
272 DTV_GET_BANDWIDTH,
273 DTV_GET_INVERSION,
274 DTV_GET_DISEQC_SLAVE_REPLY,
275 DTV_GET_SYMBOL_RATE,
276 DTV_GET_INNER_FEC,
277 DTV_GET_VOLTAGE,
278 DTV_GET_TONE,
279 DTV_GET_PILOT,
280 DTV_GET_ROLLOFF,
281 271
282 /* Basic enumeration set for querying unlimited capabilities */ 272 /* Basic enumeration set for querying unlimited capabilities */
283 DTV_GET_FE_CAPABILITY_COUNT, 273 DTV_FE_CAPABILITY_COUNT,
284 DTV_GET_FE_CAPABILITY, 274 DTV_FE_CAPABILITY,
285 275
286 /* New commands are always appended */ 276 /* New commands are always appended */
287 DTV_SET_DELIVERY_SYSTEM, 277 DTV_DELIVERY_SYSTEM,
288 DTV_GET_DELIVERY_SYSTEM,
289 278
290 /* ISDB-T */ 279 /* ISDB-T */
291 DTV_SET_ISDB_SEGMENT_IDX, 280 DTV_ISDB_SEGMENT_IDX,
292 DTV_GET_ISDB_SEGMENT_IDX, 281 DTV_ISDB_SEGMENT_WIDTH,
293 DTV_SET_ISDB_SEGMENT_WIDTH, 282 DTV_ISDB_LAYERA_FEC,
294 DTV_GET_ISDB_SEGMENT_WIDTH, 283 DTV_ISDB_LAYERA_MODULATION,
295 DTV_GET_ISDB_LAYERA_FEC, 284 DTV_ISDB_LAYERA_SEGMENT_WIDTH,
296 DTV_GET_ISDB_LAYERA_MODULATION, 285 DTV_ISDB_LAYERB_FEC,
297 DTV_GET_ISDB_LAYERA_SEGMENT_WIDTH, 286 DTV_ISDB_LAYERB_MODULATION,
298 DTV_GET_ISDB_LAYERB_FEC, 287 DTV_ISDB_LAYERB_SEGMENT_WIDTH,
299 DTV_GET_ISDB_LAYERB_MODULATION, 288 DTV_ISDB_LAYERC_FEC,
300 DTV_GET_ISDB_LAYERB_SEGMENT_WIDTH, 289 DTV_ISDB_LAYERC_MODULATION,
301 DTV_GET_ISDB_LAYERC_FEC, 290 DTV_ISDB_LAYERC_SEGMENT_WIDTH,
302 DTV_GET_ISDB_LAYERC_MODULATION,
303 DTV_GET_ISDB_LAYERC_SEGMENT_WIDTH,
304 291
305} dtv_cmd_types_t; 292} dtv_cmd_types_t;
306 293