diff options
-rw-r--r-- | v4l/ChangeLog | 7 | ||||
-rw-r--r-- | v4l/scripts/hwdata.pl | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index 1e93ad75e..f54500e36 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,10 @@ +2006-01-15 12:38 nshmyrev + + * v4l/scripts/hwdata.pl: + - Update hwdata script. + + Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> + 2006-01-15 10:08 mchehab * linux/drivers/media/dvb/ttpci/av7110_hw.c: (load_dram), diff --git a/v4l/scripts/hwdata.pl b/v4l/scripts/hwdata.pl index 079226e07..ca583d69d 100644 --- a/v4l/scripts/hwdata.pl +++ b/v4l/scripts/hwdata.pl @@ -71,12 +71,10 @@ sub print_cards ($) { print ("\t7130 SAA7130 Video Broadcast Decoder\n"); print_cards ("PCI_DEVICE_ID_PHILIPS_SAA7130"); -print ("\t7133 SAA7133 Video Broadcast Decoder\n"); +print ("\t7133 SAA7133/SAA7135 Video Broadcast Decoder\n"); print_cards ("PCI_DEVICE_ID_PHILIPS_SAA7133"); print ("\t7134 SAA7134 Video Broadcast Decoder\n"); print_cards ("PCI_DEVICE_ID_PHILIPS_SAA7134"); -print ("\t7135 SAA7135 Video Broadcast Decoder\n"); -print_cards ("PCI_DEVICE_ID_PHILIPS_SAA7135"); open ($input, "../cx88-cards.c"); @@ -128,7 +126,7 @@ open ($input, "../bttv-cards.c"); while (<$input>) { if (/\{\s*0x(\w{4})(\w{4}),.*\"([^\"]+)\"\s\},/) { - printf ("\t\t%s %s %s\n", $1, $2, $3); + printf ("\t\t%s %s %s\n", $2, $1, $3); } } |