summaryrefslogtreecommitdiff
path: root/linux/sound
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-02-07 10:15:34 -0200
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-02-07 10:15:34 -0200
commitafcfb73bdbe21ae90b41a3adc127b65854b294df (patch)
tree8707d887e65189779c379232a1ada45f8c6839c7 /linux/sound
parentf1e940da2ce33a9b48e62632c7f838b298097609 (diff)
downloadmediapointer-dvb-s2-afcfb73bdbe21ae90b41a3adc127b65854b294df.tar.gz
mediapointer-dvb-s2-afcfb73bdbe21ae90b41a3adc127b65854b294df.tar.bz2
Kernel Sync stuff
From: Mauro Carvalho Chehab <mchehab@infradead.org> Added a new format at videodev2.h Added support for a new board at snd-bt87x module kernel-sync Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/sound')
-rw-r--r--linux/sound/pci/bt87x.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/sound/pci/bt87x.c b/linux/sound/pci/bt87x.c
index e4e99e429..65f7b6a4f 100644
--- a/linux/sound/pci/bt87x.c
+++ b/linux/sound/pci/bt87x.c
@@ -781,6 +781,8 @@ static struct pci_device_id snd_bt87x_ids[] = {
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, 0x0070, 0x13eb, 32000),
/* Viewcast Osprey 200 */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff01, 44100),
+ /* AVerMedia Studio No. 103, 203, ...? */
+ BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1461, 0x0003, 48000),
{ }
};
MODULE_DEVICE_TABLE(pci, snd_bt87x_ids);
@@ -808,7 +810,7 @@ static int __devinit snd_bt87x_detect_card(struct pci_dev *pci)
const struct pci_device_id *supported;
supported = pci_match_device(&driver, pci);
- if (supported)
+ if (supported && supported->driver_data > 0)
return supported->driver_data;
for (i = 0; i < ARRAY_SIZE(blacklist); ++i)