Commit 61189c78 authored by Peter Korsgaard's avatar Peter Korsgaard Committed by David S. Miller

dm9601: trivial comment fixes

The comments describing the rx/tx headers used a combination of zero-
and 1-based indexing, leading to confusion.
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9d21493b
...@@ -497,10 +497,10 @@ static int dm9601_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -497,10 +497,10 @@ static int dm9601_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
int len; int len;
/* format: /* format:
b0: rx status b1: rx status
b1: packet length (incl crc) low b2: packet length (incl crc) low
b2: packet length (incl crc) high b3: packet length (incl crc) high
b3..n-4: packet data b4..n-4: packet data
bn-3..bn: ethernet crc bn-3..bn: ethernet crc
*/ */
...@@ -533,8 +533,8 @@ static struct sk_buff *dm9601_tx_fixup(struct usbnet *dev, struct sk_buff *skb, ...@@ -533,8 +533,8 @@ static struct sk_buff *dm9601_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
int len; int len;
/* format: /* format:
b0: packet length low b1: packet length low
b1: packet length high b2: packet length high
b3..n: packet data b3..n: packet data
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment