diff options
author | Michael Krufky <mkrufky@m1k.net> | 2006-02-06 09:15:11 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-02-06 09:15:11 -0200 |
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 53ac66e0114..ad9c171bfa0 100644 --- a/include/media/tuner-types.h +++ b/include/media/tuner-types.h @@ -46,6 +46,7 @@ struct tuner_params { struct tunertype { char *name; + unsigned int count; struct tuner_params *params; }; |