diff options
author | Michael Krufky <mkrufky@m1k.net> | 2006-01-23 17:11:11 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-23 17:11:11 -0200 |
commit | 3fc46d35b30cfae018c4903228a270c9543f4d7a (patch) | |
tree | 72f02a4cb4e8f8087f1f384d82a4daa9de13086f /include | |
parent | ab66b22f0c4e5786d59fa23569ac37a4a21ab4fb (diff) | |
download | linux-3.10-3fc46d35b30cfae018c4903228a270c9543f4d7a.tar.gz linux-3.10-3fc46d35b30cfae018c4903228a270c9543f4d7a.tar.bz2 linux-3.10-3fc46d35b30cfae018c4903228a270c9543f4d7a.zip |
V4L/DVB (3436): move config byte from tuner_params to tuner_range struct.
- Move config byte from tuner_params to tuner_range struct.
- dvb tuners must be able to set different config byte for each range.
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/tuner-types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/tuner-types.h b/include/media/tuner-types.h index 15821ab14a9..53ac66e0114 100644 --- a/include/media/tuner-types.h +++ b/include/media/tuner-types.h @@ -14,6 +14,7 @@ enum param_type { struct tuner_range { unsigned short limit; + unsigned char config; unsigned char cb; }; @@ -38,7 +39,6 @@ struct tuner_params { * static unless the control byte was sent first. */ unsigned int cb_first_if_lower_freq:1; - unsigned char config; /* to be moved into struct tuner_range for dvb-pll merge */ unsigned int count; struct tuner_range *ranges; |