Browse Source

cxgb3: Use standard #defines for PCIe Capability ASPM fields

Use the standard #defines rather than bare numbers for PCIe Capability
ASPM fields.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: David S. Miller <davem@davemloft.net>
Bjorn Helgaas 12 years ago
parent
commit
f2692bd9be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/ethernet/chelsio/cxgb3/t3_hw.c

+ 1 - 1
drivers/net/ethernet/chelsio/cxgb3/t3_hw.c

@@ -3307,7 +3307,7 @@ static void config_pcie(struct adapter *adap)
 	    G_NUMFSTTRNSEQRX(t3_read_reg(adap, A_PCIE_MODE));
 	log2_width = fls(adap->params.pci.width) - 1;
 	acklat = ack_lat[log2_width][pldsize];
-	if (val & 1)		/* check LOsEnable */
+	if (val & PCI_EXP_LNKCTL_ASPM_L0S)	/* check LOsEnable */
 		acklat += fst_trn_tx * 4;
 	rpllmt = rpl_tmr[log2_width][pldsize] + fst_trn_rx * 4;