aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bnx2x_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/bnx2x_init.h')
-rw-r--r--drivers/net/bnx2x_init.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/bnx2x_init.h b/drivers/net/bnx2x_init.h
index a6c0b3abba29..961db4916f25 100644
--- a/drivers/net/bnx2x_init.h
+++ b/drivers/net/bnx2x_init.h
@@ -572,7 +572,12 @@ static void bnx2x_init_pxp(struct bnx2x *bp)
572 bp->pcie_cap + PCI_EXP_DEVCTL, &devctl); 572 bp->pcie_cap + PCI_EXP_DEVCTL, &devctl);
573 DP(NETIF_MSG_HW, "read 0x%x from devctl\n", devctl); 573 DP(NETIF_MSG_HW, "read 0x%x from devctl\n", devctl);
574 w_order = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5); 574 w_order = ((devctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
575 r_order = ((devctl & PCI_EXP_DEVCTL_READRQ) >> 12); 575 if (bp->mrrs == -1)
576 r_order = ((devctl & PCI_EXP_DEVCTL_READRQ) >> 12);
577 else {
578 DP(NETIF_MSG_HW, "force read order to %d\n", bp->mrrs);
579 r_order = bp->mrrs;
580 }
576 581
577 if (r_order > MAX_RD_ORD) { 582 if (r_order > MAX_RD_ORD) {
578 DP(NETIF_MSG_HW, "read order of %d order adjusted to %d\n", 583 DP(NETIF_MSG_HW, "read order of %d order adjusted to %d\n",