mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-04-22 23:20:40 +02:00
Fix PCI config space cycles from int10 emulator.
The top bit of 0xCF8 is an enable bit, not part of the domain. Sending
cycles to domain 128 instead of domain 0 is rarely the right thing to do.
(cherry picked from commit cc7c045bae)
This commit is contained in:
parent
bd91565ac8
commit
9a908769e6
1 changed files with 1 additions and 1 deletions
|
|
@ -461,7 +461,7 @@ Mem_wl(CARD32 addr, CARD32 val)
|
|||
static CARD32 PciCfg1Addr = 0;
|
||||
|
||||
#define PCI_OFFSET(x) ((x) & 0x000000ff)
|
||||
#define PCI_TAG(x) ((x) & 0xffffff00)
|
||||
#define PCI_TAG(x) ((x) & 0x7fffff00)
|
||||
|
||||
static struct pci_device*
|
||||
pci_device_for_cfg_address (CARD32 addr)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue