From: Jacob Pan Date: Fri, 14 May 2010 21:41:14 +0000 (-0700) Subject: x86, mrst, pci: return 0 for non-present pci bars X-Git-Tag: upstream/snapshot3+hdmi~14604^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4af4268a34d8cd28c46a03161fc017cbd2db887;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git x86, mrst, pci: return 0 for non-present pci bars Moorestown PCI code has special handling of devices with fixed BARs. In case of BAR sizing writes, we need to update the fake PCI MMCFG space with real size decode value. When a BAR is not present, we need to return 0 instead of ~0. ~0 will be treated as device error per bugzilla 12006. Signed-off-by: Jacob Pan LKML-Reference: <1273873281-17489-2-git-send-email-jacob.jun.pan@linux.intel.com> Acked-by: Jesse Barnes Acked-by: Thomas Gleixner Signed-off-by: H. Peter Anvin --- diff --git a/arch/x86/pci/mrst.c b/arch/x86/pci/mrst.c index 8bf2fcb..d5c7aef 100644 --- a/arch/x86/pci/mrst.c +++ b/arch/x86/pci/mrst.c @@ -109,7 +109,7 @@ static int pci_device_update_fixed(struct pci_bus *bus, unsigned int devfn, decode++; decode = ~(decode - 1); } else { - decode = ~0; + decode = 0; } /*