aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2010-03-15 10:51:53 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-04-01 19:01:24 -0400
commit6ca05d7182452b47a2e25a218254f3eebb0314fa (patch)
treee9016e4d725dfc985b38eebd760783c45203c5ce /sound
parentcb6972366b36a2740e1e47b7b9c0471cc6065988 (diff)
ALSA: hda - Disable MSI for Nvidia controller
commit 80c43ed724797627d8f86855248c497a6161a214 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>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_intel.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 16df726ba7a5..9b059d9d4ab5 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2374,6 +2374,13 @@ static void __devinit check_msi(struct azx *chip)
2374 "hda_intel: msi for device %04x:%04x set to %d\n", 2374 "hda_intel: msi for device %04x:%04x set to %d\n",
2375 q->subvendor, q->subdevice, q->value); 2375 q->subvendor, q->subdevice, q->value);
2376 chip->msi = q->value; 2376 chip->msi = q->value;
2377 return;
2378 }
2379
2380 /* NVidia chipsets seem to cause troubles with MSI */
2381 if (chip->driver_type == AZX_DRIVER_NVIDIA) {
2382 printk(KERN_INFO "hda_intel: Disable MSI for Nvidia chipset\n");
2383 chip->msi = 0;
2377 } 2384 }
2378} 2385}
2379 2386