summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPetko Manolov <petkan@mip-labs.com>2016-04-27 11:24:50 (GMT)
committerDavid S. Miller <davem@davemloft.net>2016-04-28 21:05:25 (GMT)
commit1a8deec09d12c1a2946f131aa171d5e0479333de (patch)
tree465c0b98808107b3ae615b13cdc87671d7935a21 /drivers
parentb7302ca05871e50208bc328cbc8199a21f5d876e (diff)
downloadlinux-1a8deec09d12c1a2946f131aa171d5e0479333de.tar.xz
pegasus: fixes reported packet length
The default Pegasus setup was to append the status and CRC at the end of each received packet. The status bits are used to update various stats, but CRC has been ignored. The new default is to not append CRC at the end of RX packets. Signed-off-by: Petko Manolov <petkan@mip-labs.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/usb/pegasus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/usb/pegasus.c b/drivers/net/usb/pegasus.c
index f919e20..82129ee 100644
--- a/drivers/net/usb/pegasus.c
+++ b/drivers/net/usb/pegasus.c
@@ -411,7 +411,7 @@ static int enable_net_traffic(struct net_device *dev, struct usb_device *usb)
int ret;
read_mii_word(pegasus, pegasus->phy, MII_LPA, &linkpart);
- data[0] = 0xc9;
+ data[0] = 0xc8; /* TX & RX enable, append status, no CRC */
data[1] = 0;
if (linkpart & (ADVERTISE_100FULL | ADVERTISE_10FULL))
data[1] |= 0x20; /* set full duplex */
@@ -497,7 +497,7 @@ static void read_bulk_callback(struct urb *urb)
pkt_len = buf[count - 3] << 8;
pkt_len += buf[count - 4];
pkt_len &= 0xfff;
- pkt_len -= 8;
+ pkt_len -= 4;
}
/*