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 <jbeulich@suse.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
CC: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>

authored by Bjorn Helgaas and committed by Konrad Rzeszutek Wilk 4be6bfe2 934f585e

Changed files
+1 -1
arch
x86
pci
+1 -1
arch/x86/pci/xen.c
··· 299 299 300 300 pci_read_config_dword(dev, pos + PCI_MSIX_TABLE, 301 301 &table_offset); 302 - bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK); 302 + bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR); 303 303 304 304 map_irq.table_base = pci_resource_start(dev, bir); 305 305 map_irq.entry_nr = msidesc->msi_attrib.entry_nr;