Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Michael Krufky and committed by
Mauro Carvalho Chehab
8f0bb9c0 e0ad8486

+1 -1
+1 -1
include/media/tuner-types.h
··· 19 19 20 20 struct tuner_params { 21 21 enum param_type type; 22 + unsigned int tda988x; 22 23 unsigned char config; /* to be moved into struct tuner_range for dvb-pll merge */ 23 24 24 25 unsigned int count; ··· 28 27 29 28 struct tunertype { 30 29 char *name; 31 - unsigned int has_tda988x:1; 32 30 struct tuner_params *params; 33 31 }; 34 32