aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index 9160811c6d7d..bd3d21d01853 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -3862,9 +3862,10 @@ static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
3862 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) 3862 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
3863 gpie |= IXGBE_SDP1_GPIEN; 3863 gpie |= IXGBE_SDP1_GPIEN;
3864 3864
3865 if (hw->mac.type == ixgbe_mac_82599EB) 3865 if (hw->mac.type == ixgbe_mac_82599EB) {
3866 gpie |= IXGBE_SDP1_GPIEN; 3866 gpie |= IXGBE_SDP1_GPIEN;
3867 gpie |= IXGBE_SDP2_GPIEN; 3867 gpie |= IXGBE_SDP2_GPIEN;
3868 }
3868 3869
3869 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie); 3870 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3870} 3871}