Wan Tat Chee wrote: > -#define card_hasaudio(dev) (dev->pci->device == PCI_DEVICE_ID_PHILIPS_SAA7134) > +#define card_hasaudio(dev) ((dev->pci->device == PCI_DEVICE_ID_PHILIPS_SAA7134) \ > + || (dev->pci->device == PCI_DEVICE_ID_PHILIPS_SAA7130)) This change actual says that all cards have audio, as the only chips currently available are the SAA7130 and the SAA7134. So the check card_hasaudio is always true.