diff options
author | John Baldwin <jhb@FreeBSD.org> | 2009-03-05 15:46:41 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2009-03-05 15:46:41 +0000 |
commit | 5dfee414c0c9964c8c3b39e164f7ccc3d7359741 (patch) | |
tree | 2e519513a369124ef8fa24963c5c5e9b615e6793 | |
parent | 49e52141f273e7714ea8b6017797506bf4c78f36 (diff) |
Notes
-rw-r--r-- | sys/dev/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 03b9a8ddce99..6631e409cff1 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -554,7 +554,7 @@ pci_read_extcap(device_t pcib, pcicfgregs *cfg) addr = REG(ptr + PCIR_HTMSI_ADDRESS_HI, 4); addr <<= 32; - addr = REG(ptr + PCIR_HTMSI_ADDRESS_LO, + addr |= REG(ptr + PCIR_HTMSI_ADDRESS_LO, 4); if (addr != MSI_INTEL_ADDR_BASE) device_printf(pcib, |