diff options
author | Hui Wang <hui.wang@canonical.com> | 2014-05-26 16:22:42 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-05-26 11:05:26 +0200 |
commit | 621b5a047e5c9ced76afd5e8092283032cda802b (patch) | |
tree | 95e7c856d7f7f29231cdb95f80280b337c5a3d65 /sound/pci | |
parent | 20531415adf30877296ea89fb0e534ac87f6cc71 (diff) |
ALSA: hda - get subvendor from codec rather than pci_dev
It is safer for non-pci situation.
Signed-off-by: Hui Wang <hui.wang@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_auto_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_auto_parser.c b/sound/pci/hda/hda_auto_parser.c index a1427532623..b684c6e4f30 100644 --- a/sound/pci/hda/hda_auto_parser.c +++ b/sound/pci/hda/hda_auto_parser.c @@ -860,7 +860,7 @@ void snd_hda_pick_pin_fixup(struct hda_codec *codec, return; for (pq = pin_quirk; pq->subvendor; pq++) { - if (codec->bus->pci->subsystem_vendor != pq->subvendor) + if ((codec->subsystem_id & 0xffff0000) != (pq->subvendor << 16)) continue; if (codec->vendor_id != pq->codec) continue; |