From: Michael Krufky Date: Sun, 15 Jan 2006 14:46:18 +0000 (-0200) Subject: V4L/DVB (3383): Move tda988x options into tuner_params struct. X-Git-Tag: firefly_0821_release~38770^2^2^2~7 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8f0bb9c069fc487dadebe4cdd1e03f0df5ebf0e6;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Mauro Carvalho Chehab --- diff --git a/include/media/tuner-types.h b/include/media/tuner-types.h index 64b16b1f1926..756693188991 100644 --- a/include/media/tuner-types.h +++ b/include/media/tuner-types.h @@ -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; };