diff options
author | Michael Krufky <mkrufky@m1k.net> | 2006-02-06 06:15:11 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-02-06 06:15:11 -0500 |
commit | bbab6fd81f26b210f0815d79064a3387c3a1ade3 (patch) | |
tree | 627875f2ea294e49643862f9576cea96952d934c /include/media | |
parent | b31c544aedc802688e32240f1398a4321433bfae (diff) |
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>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/tuner-types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/tuner-types.h b/include/media/tuner-types.h index 53ac66e0114b..ad9c171bfa07 100644 --- a/include/media/tuner-types.h +++ b/include/media/tuner-types.h | |||
@@ -46,6 +46,7 @@ struct tuner_params { | |||
46 | 46 | ||
47 | struct tunertype { | 47 | struct tunertype { |
48 | char *name; | 48 | char *name; |
49 | unsigned int count; | ||
49 | struct tuner_params *params; | 50 | struct tuner_params *params; |
50 | }; | 51 | }; |
51 | 52 | ||