diff options
author | Steven Toth <stoth@kernellabs.com> | 2009-09-03 22:46:16 -0400 |
---|---|---|
committer | Steven Toth <stoth@kernellabs.com> | 2009-09-03 22:46:16 -0400 |
commit | 960dd433677f556b9eed1185b4fc7442ff6b9c63 (patch) | |
tree | fd950803945a92fae5cb5c07d348b59542c77139 /linux | |
parent | c13efc956770743a82a0f143404522cea1f99c47 (diff) | |
download | mediapointer-dvb-s2-960dd433677f556b9eed1185b4fc7442ff6b9c63.tar.gz mediapointer-dvb-s2-960dd433677f556b9eed1185b4fc7442ff6b9c63.tar.bz2 |
SAA7164: Add support for a new HVR-2250 hardware revision
From: Steven Toth <stoth@kernellabs.com>
SAA7164: Add support for a new HVR-2250 hardware revision
Priority: normal
Signed-off-by: Steven Toth <stoth@kernellabs.com>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/Documentation/video4linux/CARDLIST.saa7164 | 2 | ||||
-rw-r--r-- | linux/drivers/media/video/saa7164/saa7164-cards.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/linux/Documentation/video4linux/CARDLIST.saa7164 b/linux/Documentation/video4linux/CARDLIST.saa7164 index d9bcb5a7e..152bd7b78 100644 --- a/linux/Documentation/video4linux/CARDLIST.saa7164 +++ b/linux/Documentation/video4linux/CARDLIST.saa7164 @@ -5,5 +5,5 @@ 4 -> Hauppauge WinTV-HVR2200 [0070:8980] 5 -> Hauppauge WinTV-HVR2200 [0070:8900] 6 -> Hauppauge WinTV-HVR2200 [0070:8901] - 7 -> Hauppauge WinTV-HVR2250 [0070:8891] + 7 -> Hauppauge WinTV-HVR2250 [0070:8891,0070:8851] 8 -> Hauppauge WinTV-HVR2250 [0070:88A1] diff --git a/linux/drivers/media/video/saa7164/saa7164-cards.c b/linux/drivers/media/video/saa7164/saa7164-cards.c index 786200b6f..da0eff9cf 100644 --- a/linux/drivers/media/video/saa7164/saa7164-cards.c +++ b/linux/drivers/media/video/saa7164/saa7164-cards.c @@ -404,6 +404,10 @@ struct saa7164_subid saa7164_subids[] = { .subvendor = 0x0070, .subdevice = 0x8891, .card = SAA7164_BOARD_HAUPPAUGE_HVR2250_2, + }, { + .subvendor = 0x0070, + .subdevice = 0x8851, + .card = SAA7164_BOARD_HAUPPAUGE_HVR2250_2, }, }; const unsigned int saa7164_idcount = ARRAY_SIZE(saa7164_subids); |