netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] drivers/net/usb/asix: fixed asix_get_wol reported wrong wol status issue
@ 2011-12-23  6:38 allan
  2011-12-23 21:53 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: allan @ 2011-12-23  6:38 UTC (permalink / raw)
  To: davem
  Cc: netdev, linux-kernel, 'Freddy Xin',
	'Grant Grundler', 'Eugene',
	'ASIX Louis [蘇威陸]'

Fixed the asix_get_wol() routine reported wrong wol status issue. 

Signed-off-by: Allan Chou <allan@asix.com.tw>
Tested-by: Eugene <elubarsky@gmail.com>; Allan Chou <allan@asix.com.tw>
---
This fix had been verified on x86 Linux kernel 3.0.0-12-generic system with AX88772A/AX88772/Belkin AX88178 USB dongles, and the wol function works fine (can be waked up by receiving the magic packets).

diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
--- a/drivers/net/usb/asix.c	2011-12-15 14:01:49.000000000 +0800
+++ b/drivers/net/usb/asix.c	2011-12-22 18:20:39.000000000 +0800
@@ -36,7 +36,7 @@
 #include <linux/usb/usbnet.h>
 #include <linux/slab.h>
 
-#define DRIVER_VERSION "08-Nov-2011"
+#define DRIVER_VERSION "22-Dec-2011"
 #define DRIVER_NAME "asix"
 
 /* ASIX AX8817X based USB 2.0 Ethernet Devices */
@@ -689,6 +689,10 @@ asix_get_wol(struct net_device *net, str
 	}
 	wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
 	wolinfo->wolopts = 0;
+	if (opt & AX_MONITOR_LINK)
+		wolinfo->wolopts |= WAKE_PHY;
+	if (opt & AX_MONITOR_MAGIC)
+		wolinfo->wolopts |= WAKE_MAGIC;
 }
 
 static int

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] drivers/net/usb/asix: fixed asix_get_wol reported wrong wol status issue
  2011-12-23  6:38 [PATCH v2] drivers/net/usb/asix: fixed asix_get_wol reported wrong wol status issue allan
@ 2011-12-23 21:53 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2011-12-23 21:53 UTC (permalink / raw)
  To: allan; +Cc: netdev, linux-kernel, freddy, grundler, elubarsky, louis

From: "allan" <allan@asix.com.tw>
Date: Fri, 23 Dec 2011 14:38:51 +0800

> Fixed the asix_get_wol() routine reported wrong wol status issue. 
> 
> Signed-off-by: Allan Chou <allan@asix.com.tw>
> Tested-by: Eugene <elubarsky@gmail.com>; Allan Chou <allan@asix.com.tw>

Applied.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-23 21:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-23  6:38 [PATCH v2] drivers/net/usb/asix: fixed asix_get_wol reported wrong wol status issue allan
2011-12-23 21:53 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).