From: Grant Grundler Date: Mon, 17 Oct 2011 05:51:06 +0000 (+0000) Subject: NET: asix: fix ethtool -e for AX88178 USB dongle X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=79de9efdb93d8e693dccd0eb7d80cd6092f5875b;p=mv-sheeva.git NET: asix: fix ethtool -e for AX88178 USB dongle "ethtool -e ethX" dumps EEPROM data. Patch sets EEPROM length for device. Ethtool works alot better when the kernel believes the length is > 0. From: Allan Chou Signed-off-by: Grant Grundler Signed-off-by: David S. Miller --- diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c index 1c85c477e17..e81e22e3d1d 100644 --- a/drivers/net/usb/asix.c +++ b/drivers/net/usb/asix.c @@ -1397,6 +1397,9 @@ static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf) int ret; u8 buf[ETH_ALEN]; u32 phyid; + struct asix_data *data = (struct asix_data *)&dev->data; + + data->eeprom_len = AX88772_EEPROM_LEN; usbnet_get_endpoints(dev,intf);