Hmm.
I wonder what it shows if that commit is not reverted (in fact it is necessary
on some other systems for things to work correctly).
Also, please check if the appended patch helps (of course, without reverting
the commit).
---
drivers/net/skge.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
Index: linux-2.6/drivers/net/skge.c
===================================================================
--- linux-2.6.orig/drivers/net/skge.c
+++ linux-2.6/drivers/net/skge.c
@@ -3856,8 +3856,9 @@ static struct net_device *skge_devinit(s
skge->speed = -1;
skge->advertising = skge_supported_modes(hw);
- if (device_may_wakeup(&hw->pdev->dev))
- skge->wol = wol_supported(hw) & WAKE_MAGIC;
+ skge->wol = wol_supported(hw) & WAKE_MAGIC;
+ if (skge->wol && device_can_wakeup(&hw->pdev->dev))
+ device_set_wakeup_enable(&hw->pdev->dev, true);
hw->dev[port] = dev;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html