diff options
author | Michael Krufky <devnull@localhost> | 2006-01-29 17:01:21 -0500 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2006-01-29 17:01:21 -0500 |
commit | ce7401b487d18678f851abb06d51532fdf2b6094 (patch) | |
tree | 50eede75f5a8b738ccf8fce210a59f8b6d51ba9a /linux/include | |
parent | 1237da7b7ca9519fd3466087a442a99cb6df5098 (diff) | |
download | mediapointer-dvb-s2-ce7401b487d18678f851abb06d51532fdf2b6094.tar.gz mediapointer-dvb-s2-ce7401b487d18678f851abb06d51532fdf2b6094.tar.bz2 |
add count to tunertype struct
From: Michael Krufky <mkrufky@m1k.net>
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>
Diffstat (limited to 'linux/include')
-rw-r--r-- | linux/include/media/tuner-types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/include/media/tuner-types.h b/linux/include/media/tuner-types.h index 0af1cee66..0e2503be4 100644 --- a/linux/include/media/tuner-types.h +++ b/linux/include/media/tuner-types.h @@ -65,6 +65,7 @@ struct tuner_params { struct tunertype { char *name; + unsigned int count; struct tuner_params *params; }; |