From: David Wang Date: Mon, 16 Apr 2018 09:48:09 +0000 (+0800) Subject: ALSA: hda - New VIA controller suppor no-snoop path X-Git-Tag: v4.9.96~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e2389a07923a888d6e22337391b08092f213416;p=platform%2Fkernel%2Flinux-amlogic.git ALSA: hda - New VIA controller suppor no-snoop path commit af52f9982e410edac21ca4b49563053ffc9da1eb upstream. This patch is used to tell kernel that new VIA HDAC controller also support no-snoop path. [ minor coding style fix by tiwai ] Signed-off-by: David Wang Cc: Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 733b342..7d3f88d 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -1514,7 +1514,8 @@ static void azx_check_snoop_available(struct azx *chip) */ u8 val; pci_read_config_byte(chip->pci, 0x42, &val); - if (!(val & 0x80) && chip->pci->revision == 0x30) + if (!(val & 0x80) && (chip->pci->revision == 0x30 || + chip->pci->revision == 0x20)) snoop = false; }