mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 04:48:04 +09:00
ALSA: hda - Disable MSI for Nvidia controller
commit 80c43ed724 upstream.
Judging from the member of enable_msi white-list, Nvidia controller
seems to cause troubles with MSI enabled, e.g. boot hang up or other
serious issue may come up. It's safer to disable MSI as default for
Nvidia controllers again for now.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fbaa3a9c96
commit
013e2704f2
@@ -2335,6 +2335,13 @@ static void __devinit check_msi(struct azx *chip)
|
||||
"hda_intel: msi for device %04x:%04x set to %d\n",
|
||||
q->subvendor, q->subdevice, q->value);
|
||||
chip->msi = q->value;
|
||||
return;
|
||||
}
|
||||
|
||||
/* NVidia chipsets seem to cause troubles with MSI */
|
||||
if (chip->driver_type == AZX_DRIVER_NVIDIA) {
|
||||
printk(KERN_INFO "hda_intel: Disable MSI for Nvidia chipset\n");
|
||||
chip->msi = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user