diff options
Diffstat (limited to 'v4l')
-rw-r--r-- | v4l/ChangeLog | 12 | ||||
-rw-r--r-- | v4l/scripts/buildpatch | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index e5e3aeff7..a08cfbc3f 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,15 @@ +2005-09-13 19:04 mchehab + + * scripts/buildpatch: + - Fixed a problem when commiting <dolar>Id with CVS. + + * tuner-core.c: (tuner_command): + - Better debug info for non-implemented iocts. + * tveeprom.c: + - Fixed compiling with gcc2.9x (thanks to Andrew Morton). + + Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> + 2005-09-13 16:22 mkrufky * bttv-cards.c, bttv-driver.c: diff --git a/v4l/scripts/buildpatch b/v4l/scripts/buildpatch index ab091bca0..8404ba471 100644 --- a/v4l/scripts/buildpatch +++ b/v4l/scripts/buildpatch @@ -152,7 +152,7 @@ sub filter_dest ($$) { open OUT, ">$out"; while ($line = <IN>) { - if ($line =~ m/\$Id: buildpatch,v 1.9 2005/09/04 11:45:20 mchehab Exp $/) { + if ($line =~ m/[\$]Id:.*/) { next; } print OUT $line; |