V4L/DVB (3265): Add count to tunertype struct

The tuner_params element is an array of undefined length,
with each array member being a set of parameters for each
video standard type.
The number of members in the tuner_params array
will be stored in tuners[]->count

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-02-06 09:15:11 -02:00
committed by Mauro Carvalho Chehab
parent b31c544aed
commit bbab6fd81f
2 changed files with 68 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ struct tuner_params {
struct tunertype {
char *name;
unsigned int count;
struct tuner_params *params;
};