diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-12-27 11:17:20 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-12-27 11:17:20 +0000 |
commit | e91f9666d58efcdb369ba1badbf494cd3249c354 (patch) | |
tree | 3e6d5291d480ea42ffaf3b26e3239acd296f265c | |
parent | 8cd4e2238e199d976d04baadda36cf7ddedddb10 (diff) | |
download | mediapointer-dvb-s2-e91f9666d58efcdb369ba1badbf494cd3249c354.tar.gz mediapointer-dvb-s2-e91f9666d58efcdb369ba1badbf494cd3249c354.tar.bz2 |
Script fixed to work properly after tuner-simple.c changes.
- Script fixed to work properly after tuner-simple.c changes.
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
-rw-r--r-- | v4l/ChangeLog | 7 | ||||
-rw-r--r-- | v4l/scripts/tuner.pl | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index c3fca1781..e1522887a 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,10 @@ +2005-12-27 11:15 mchehab + + * v4l/scripts/tuner.pl: + - Script fixed to work properly after tuner-simple.c changes. + + Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> + 2005-12-27 04:24 mkrufky * linux/drivers/media/video/tuner-simple.c: (default_set_tv_freq): diff --git a/v4l/scripts/tuner.pl b/v4l/scripts/tuner.pl index 8cf10da3d..fcfa22e26 100644 --- a/v4l/scripts/tuner.pl +++ b/v4l/scripts/tuner.pl @@ -24,6 +24,9 @@ while (<IN>) { # tuners if (/\[(TUNER_\w+)\]/) { $id = $1; + if ($id =~ m/TUNER_MAX/) { + next; + } $data{$id}->{id} = $id; }; next unless defined($id); |