summaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_auto_parser.c
diff options
context:
space:
mode:
authorHui Wang <hui.wang@canonical.com>2014-05-26 16:22:42 +0800
committerTakashi Iwai <tiwai@suse.de>2014-05-26 11:05:26 +0200
commit621b5a047e5c9ced76afd5e8092283032cda802b (patch)
tree95e7c856d7f7f29231cdb95f80280b337c5a3d65 /sound/pci/hda/hda_auto_parser.c
parent20531415adf30877296ea89fb0e534ac87f6cc71 (diff)
downloadtalos-op-linux-621b5a047e5c9ced76afd5e8092283032cda802b.tar.gz
talos-op-linux-621b5a047e5c9ced76afd5e8092283032cda802b.zip
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/hda/hda_auto_parser.c')
-rw-r--r--sound/pci/hda/hda_auto_parser.c2
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 a14275326234..b684c6e4f301 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;
OpenPOWER on IntegriCloud