diff options
Diffstat (limited to 'sys/dev/pci/pci.c')
-rw-r--r-- | sys/dev/pci/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index 5af67a3..7991b39 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -402,9 +402,9 @@ pci_read_extcap(device_t pcib, pcicfgregs *cfg) #define REG(n, w) PCIB_READ_CONFIG(pcib, cfg->bus, cfg->slot, cfg->func, n, w) int ptr, nextptr, ptrptr; - switch (cfg->hdrtype) { + switch (cfg->hdrtype & PCIM_HDRTYPE) { case 0: - ptrptr = 0x34; + ptrptr = PCIR_CAP_PTR; break; case 2: ptrptr = 0x14; @@ -430,7 +430,7 @@ pci_read_extcap(device_t pcib, pcicfgregs *cfg) /* Process this entry */ switch (REG(ptr, 1)) { - case 0x01: /* PCI power management */ + case PCIY_PMG: /* PCI power management */ if (cfg->pp_cap == 0) { cfg->pp_cap = REG(ptr + PCIR_POWER_CAP, 2); cfg->pp_status = ptr + PCIR_POWER_STATUS; |