From: SeokYeon Hwang Date: Thu, 4 Aug 2016 04:06:06 +0000 (+0900) Subject: sound: include QEMU HDA in to the whilte list X-Git-Tag: TizenStudio_2.0_p2.3.2~3^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9712c0f8b94f852ad30743451198703cf87d859f;p=sdk%2Femulator%2Femulator-kernel.git sound: include QEMU HDA in to the whilte list Prevent ac97 clock probing. It reduces kernel loading time considerably. Change-Id: I8457d01889492415c8f29f13897988f6fe689f8d Signed-off-by: SeokYeon Hwang (cherry picked from commit 5092ef0632a5a42a5f7d98e59754ffef2e1a240f) --- diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c index 08d8733604a2..ddbc4db950e5 100644 --- a/sound/pci/intel8x0.c +++ b/sound/pci/intel8x0.c @@ -2888,6 +2888,9 @@ static struct snd_pci_quirk intel8x0_clock_list[] = { SND_PCI_QUIRK(0x1028, 0x0177, "AD1980", 48000), SND_PCI_QUIRK(0x1028, 0x01ad, "AD1981B", 48000), SND_PCI_QUIRK(0x1043, 0x80f3, "AD1985", 48000), +#ifdef CONFIG_MARU + SND_PCI_QUIRK(0x1af4, 0x1100, "QEMU_HDA", 48000), +#endif { } /* terminator */ };