diff options
author | Suresh Reddy <suresh.reddy@emulex.com> | 2014-01-15 11:53:40 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-16 03:52:03 +0400 |
commit | 76a9e08e33ced4a87277edb63456ce108ad4e712 (patch) | |
tree | 44c5077a1731f33ca88ac52d5cd6b99c35c04152 /drivers/net/ethernet/emulex/benet/be.h | |
parent | b188f0907aa82ca1bee917e4a263c2f29a0895de (diff) | |
download | linux-76a9e08e33ced4a87277edb63456ce108ad4e712.tar.xz |
be2net: cleanup wake-on-lan code
This patch cleans-up wake-on-lan code in the following ways:
1) Removes some driver hacks in be_cmd_get_acpi_wol_cap() that were based
on incorrect assumptions.
2) Uses the adapter->wol_en and wol_cap variables for checking if WoL
is supported and enabled on an interface instead of referring to the
exclusion list via the macro be_is_wol_supported()
Signed-off-by: Suresh Reddy <suresh.reddy@emulex.com>
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/emulex/benet/be.h')
-rw-r--r-- | drivers/net/ethernet/emulex/benet/be.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/emulex/benet/be.h b/drivers/net/ethernet/emulex/benet/be.h index 7f00baee1bc8..93826ae3da9d 100644 --- a/drivers/net/ethernet/emulex/benet/be.h +++ b/drivers/net/ethernet/emulex/benet/be.h @@ -492,7 +492,7 @@ struct be_adapter { u16 pvid; struct phy_info phy; u8 wol_cap; - bool wol; + bool wol_en; u32 uc_macs; /* Count of secondary UC MAC programmed */ u16 asic_rev; u16 qnq_vid; |