From: David Hollis Date: Fri, 5 Jan 2007 17:34:05 +0000 (-0500) Subject: [PATCH] asix: Fix typo for AX88772 PHY Selection X-Git-Tag: v2.6.19.2~6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a44a397980a37ecd619b46d40ed39aa76c14f3d6;p=karo-tx-linux.git [PATCH] asix: Fix typo for AX88772 PHY Selection The attached patch fixes a PHY selection problem that prevents AX88772 based devices (Linksys USB200Mv2, etc) devices from working. The interface comes up and everything seems fine except the device doesn't send/receive any packets. The one-liner attached fixes this issue and makes the devices usable again. Signed-off-by: David Hollis Signed-off-by: Chris Wright --- diff --git a/drivers/usb/net/asix.c b/drivers/usb/net/asix.c index 881841e600de..1a22d002cd07 100644 --- a/drivers/usb/net/asix.c +++ b/drivers/usb/net/asix.c @@ -920,7 +920,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) goto out2; if ((ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, - 0x0000, 0, 0, buf)) < 0) { + 1, 0, 0, buf)) < 0) { dbg("Select PHY #1 failed: %d", ret); goto out2; }