V4L/DVB (3383): Move tda988x options into tuner_params struct.

- Tda988x parameters should be defined per tuner_param_type,
for each tuner_params array member.

Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Michael Krufky 2006-01-15 12:46:18 -02:00 committed by Mauro Carvalho Chehab
parent e0ad848626
commit 8f0bb9c069
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,7 @@ struct tuner_range {
struct tuner_params {
enum param_type type;
unsigned int tda988x;
unsigned char config; /* to be moved into struct tuner_range for dvb-pll merge */
unsigned int count;
@ -27,7 +28,6 @@ struct tuner_params {
struct tunertype {
char *name;
unsigned int has_tda988x:1;
struct tuner_params *params;
};