]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ixgbe: rename wol_supported to more fitting wol_enabled
authorJacob Keller <jacob.e.keller@intel.com>
Sat, 13 Apr 2013 05:40:37 +0000 (05:40 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 25 Apr 2013 00:41:34 +0000 (17:41 -0700)
The variable wol_supported really is just checking whether it is enabled, rather
than whether it is supported. If it is enabled it will be supported, but this
does not necessarily hold true the other way around. This patch renames the
variable to avoid confusion.

Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
drivers/net/ethernet/intel/ixgbe/ixgbe_type.h

index 7946da94b2286a1baba9daf19c84ffe70f07e756..6dbdd4f9d254a3563e9983e0ef0fc7f37fc68a35 100644 (file)
@@ -1055,7 +1055,7 @@ mac_reset_top:
                 * LMS state either.
                 */
                if ((hw->phy.multispeed_fiber && hw->mng_fw_enabled) ||
-                   hw->wol_supported)
+                   hw->wol_enabled)
                        hw->mac.orig_autoc =
                                (hw->mac.orig_autoc & ~IXGBE_AUTOC_LMS_MASK) |
                                curr_lms;
index 783efbb1f7c3f31cd4545b2d020e7fa04ec15c6a..891724ac48b2e7253b0f9bcfee8fcc061e10bbd0 100644 (file)
@@ -7540,9 +7540,9 @@ skip_sriov:
        /* WOL not supported for all devices */
        adapter->wol = 0;
        hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap);
-       hw->wol_supported = ixgbe_wol_supported(adapter, pdev->device,
+       hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device,
                                                pdev->subsystem_device);
-       if (hw->wol_supported)
+       if (hw->wol_enabled)
                adapter->wol = IXGBE_WUFC_MAG;
 
        device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
index 2661dcf98ee0f22a8d37e26dacf4da193e996fe9..100dd92de2ddb37345c0e5c40df0a4a196514569 100644 (file)
@@ -3000,7 +3000,7 @@ struct ixgbe_hw {
        bool                            force_full_reset;
        bool                            allow_unsupported_sfp;
        bool                            mng_fw_enabled;
-       bool                            wol_supported;
+       bool                            wol_enabled;
 };
 
 struct ixgbe_info {