diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2009-02-26 14:32:14 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2009-02-26 14:32:14 +0000 |
| commit | 34a839f1085b64b2c508f0ecba1749b930624796 (patch) | |
| tree | 9fec7873a185e6c1f8288b3210cdc037a893bc3d | |
| parent | 318b1c3fd08f12abc28920c1e9779c0a82946a46 (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 633c4d5d3011..8f1e51fb121c 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, |
