Skip to content

Commit

Permalink
V4L/DVB (10403): saa7134-alsa: saa7130 doesn't support digital audio
Browse files Browse the repository at this point in the history
According with saa7130 public datasheet, saa7130 doesn't support
digital audio. This is also confirmed by experimental tests. So, it
doesn't make sense to let saa7134-alsa register for those chipsets.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Feb 1, 2009
1 parent 2c1a3c9 commit 40c41c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/media/video/saa7134/saa7134-alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,11 @@ static int saa7134_alsa_init(void)

list_for_each(list,&saa7134_devlist) {
dev = list_entry(list, struct saa7134_dev, devlist);
alsa_device_init(dev);
if (dev->pci->device == PCI_DEVICE_ID_PHILIPS_SAA7130)
printk(KERN_INFO "%s/alsa: %s doesn't support digital audio\n",
dev->name, saa7134_boards[dev->board].name);
else
alsa_device_init(dev);
}

if (dev == NULL)
Expand Down

0 comments on commit 40c41c8

Please sign in to comment.