diff options
Diffstat (limited to 'drivers/net/bnx2.c')
-rw-r--r-- | drivers/net/bnx2.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index 9eba7a2635ad..3b7ca2a455b4 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c | |||
@@ -3815,6 +3815,11 @@ bnx2_init_chip(struct bnx2 *bp) | |||
3815 | /* Initialize the receive filter. */ | 3815 | /* Initialize the receive filter. */ |
3816 | bnx2_set_rx_mode(bp->dev); | 3816 | bnx2_set_rx_mode(bp->dev); |
3817 | 3817 | ||
3818 | if (CHIP_NUM(bp) == CHIP_NUM_5709) { | ||
3819 | val = REG_RD(bp, BNX2_MISC_NEW_CORE_CTL); | ||
3820 | val |= BNX2_MISC_NEW_CORE_CTL_DMA_ENABLE; | ||
3821 | REG_WR(bp, BNX2_MISC_NEW_CORE_CTL, val); | ||
3822 | } | ||
3818 | rc = bnx2_fw_sync(bp, BNX2_DRV_MSG_DATA_WAIT2 | BNX2_DRV_MSG_CODE_RESET, | 3823 | rc = bnx2_fw_sync(bp, BNX2_DRV_MSG_DATA_WAIT2 | BNX2_DRV_MSG_CODE_RESET, |
3819 | 0); | 3824 | 0); |
3820 | 3825 | ||