From: Bjorn Helgaas Date: Mon, 22 Apr 2013 23:12:21 +0000 (-0600) Subject: xen/pci: Use PCI_MSIX_TABLE_BIR, not PCI_MSIX_FLAGS_BIRMASK X-Git-Tag: upstream/snapshot3+hdmi~4526^2~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4be6bfe2af829efa6da91ca33f9f2fcb3e37bc89;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git xen/pci: Use PCI_MSIX_TABLE_BIR, not PCI_MSIX_FLAGS_BIRMASK PCI_MSIX_FLAGS_BIRMASK is mis-named because the BIR mask is in the Table Offset register, not the flags ("Message Control" per spec) register. Acked-by: Jan Beulich Signed-off-by: Bjorn Helgaas CC: Konrad Rzeszutek Wilk Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c index 4a9be6d..82c62d6 100644 --- a/arch/x86/pci/xen.c +++ b/arch/x86/pci/xen.c @@ -299,7 +299,7 @@ static int xen_initdom_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) pci_read_config_dword(dev, pos + PCI_MSIX_TABLE, &table_offset); - bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK); + bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR); map_irq.table_base = pci_resource_start(dev, bir); map_irq.entry_nr = msidesc->msi_attrib.entry_nr;