]> Pileus Git - ~andy/linux/commitdiff
ixgbe: fix typo error with software defined pins on 82599
authorDon Skidmore <donald.c.skidmore@intel.com>
Wed, 13 Apr 2011 07:01:52 +0000 (07:01 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 4 May 2011 19:15:03 +0000 (12:15 -0700)
Correcting a simple typo with enabling software defined pins.  I don't
believe this was causing any issues but this is how it was meant to be
implemented.

Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com>
Tested-by: Evan Swanson <evan.swanson@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ixgbe/ixgbe_main.c

index 9160811c6d7dd68863ee800b9879267c3cd02e8b..bd3d21d0185327dc0b86a480b47c99d8b3a4f378 100644 (file)
@@ -3862,9 +3862,10 @@ static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
        if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
                gpie |= IXGBE_SDP1_GPIEN;
 
-       if (hw->mac.type == ixgbe_mac_82599EB)
+       if (hw->mac.type == ixgbe_mac_82599EB) {
                gpie |= IXGBE_SDP1_GPIEN;
                gpie |= IXGBE_SDP2_GPIEN;
+       }
 
        IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
 }