mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
skge: default WOL should be magic only (rev2)
By default, the skge driver now enables wake on magic and wake on PHY. This is a bad default (bug), wake on PHY means machine will never shutdown if connected to a switch. Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>a Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
2c4f365ad2
commit
5b982c5bb7
@ -3594,7 +3594,9 @@ static struct net_device *skge_devinit(struct skge_hw *hw, int port,
|
||||
skge->duplex = -1;
|
||||
skge->speed = -1;
|
||||
skge->advertising = skge_supported_modes(hw);
|
||||
skge->wol = pci_wake_enabled(hw->pdev) ? wol_supported(hw) : 0;
|
||||
|
||||
if (pci_wake_enabled(hw->pdev))
|
||||
skge->wol = wol_supported(hw) & WAKE_MAGIC;
|
||||
|
||||
hw->dev[port] = dev;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user