diff options
-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); |