From: Prakash Punnoor Date: Thu, 5 Mar 2009 23:45:12 +0000 (+0100) Subject: pci: don't disable too many HT MSI mapping X-Git-Tag: v2.6.29-rc8~7^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7726c3308a92b4a4c3bd059059498fca0e6f8e48;p=platform%2Fkernel%2Flinux-exynos.git pci: don't disable too many HT MSI mapping Prakash's system needs MSI disabled on some bridges, but not all. This seems to be the minimal fix for 2.6.29, but should be replaced during 2.6.30. Signed-off-by: Prakash Punnoor Signed-off-by: Matthew Wilcox --- diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 1a7c48d..9104671 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -2166,6 +2166,10 @@ static void __devinit nv_msi_ht_cap_quirk(struct pci_dev *dev) int pos; int found; + /* Enabling HT MSI mapping on this device breaks MCP51 */ + if (dev->device == 0x270) + return; + /* check if there is HT MSI cap or enabled on this device */ found = ht_check_msi_mapping(dev);