aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSander Eikelenboom <linux@eikelenboom.it>2012-02-24 12:49:42 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-03-08 10:42:28 -0500
commit632fba4d012458fd5fedc678fb9b0f8bc59ceda2 (patch)
tree4fb664999d77cc20b4243bdcb8ad6fe9729152ac
parent1b1301e67bbcad0649a8b3c6a944d2b2acddc411 (diff)
[media] cx25821: Add a card definition for "No brand" cards that have: subvendor = 0x0000 subdevice = 0x0000
Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/video/cx25821/cx25821-core.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/media/video/cx25821/cx25821-core.c b/drivers/media/video/cx25821/cx25821-core.c
index f617474f9073..7930ca58349f 100644
--- a/drivers/media/video/cx25821/cx25821-core.c
+++ b/drivers/media/video/cx25821/cx25821-core.c
@@ -1474,8 +1474,13 @@ static DEFINE_PCI_DEVICE_TABLE(cx25821_pci_tbl) = {
1474 .device = 0x8210, 1474 .device = 0x8210,
1475 .subvendor = 0x14f1, 1475 .subvendor = 0x14f1,
1476 .subdevice = 0x0920, 1476 .subdevice = 0x0920,
1477 }, 1477 }, {
1478 { 1478 /* CX25821 No Brand */
1479 .vendor = 0x14f1,
1480 .device = 0x8210,
1481 .subvendor = 0x0000,
1482 .subdevice = 0x0000,
1483 }, {
1479 /* --- end of list --- */ 1484 /* --- end of list --- */
1480 } 1485 }
1481}; 1486};