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 /v4l/scripts | |
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>
Diffstat (limited to 'v4l/scripts')
-rw-r--r-- | v4l/scripts/tuner.pl | 3 |
1 files changed, 3 insertions, 0 deletions
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); |