aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_main.c
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@intel.com>2010-11-16 22:27:05 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2010-11-16 22:27:05 -0500
commit50d6c681d0c38208e494f0c6302ef13d21dababa (patch)
tree72a1cb4d92b6b62f34a720bac18d3bf31d025d79 /drivers/net/ixgbe/ixgbe_main.c
parente2b4e216b7e9da09175c76887c754489681533b9 (diff)
ixgbe: add WOL support for backplane adapters
This change adds support for certain 82599 based Mezzanine adapters. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Tested-by: Ross Brattain <ross.b.brattain@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_main.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c
index 10fff68088e..af4ef29cae1 100644
--- a/drivers/net/ixgbe/ixgbe_main.c
+++ b/drivers/net/ixgbe/ixgbe_main.c
@@ -7088,6 +7088,13 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
7088 goto err_sw_init; 7088 goto err_sw_init;
7089 7089
7090 switch (pdev->device) { 7090 switch (pdev->device) {
7091 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7092 /* All except this subdevice support WOL */
7093 if (pdev->subsystem_device ==
7094 IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) {
7095 adapter->wol = 0;
7096 break;
7097 }
7091 case IXGBE_DEV_ID_82599_KX4: 7098 case IXGBE_DEV_ID_82599_KX4:
7092 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX | 7099 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7093 IXGBE_WUFC_MC | IXGBE_WUFC_BC); 7100 IXGBE_WUFC_MC | IXGBE_WUFC_BC);