mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 12:16:20 +00:00
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: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9d21493b4b
commit
61189c78bd
1 changed files with 6 additions and 6 deletions
|
@ -497,10 +497,10 @@ static int dm9601_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
|
|||
int len;
|
||||
|
||||
/* format:
|
||||
b0: rx status
|
||||
b1: packet length (incl crc) low
|
||||
b2: packet length (incl crc) high
|
||||
b3..n-4: packet data
|
||||
b1: rx status
|
||||
b2: packet length (incl crc) low
|
||||
b3: packet length (incl crc) high
|
||||
b4..n-4: packet data
|
||||
bn-3..bn: ethernet crc
|
||||
*/
|
||||
|
||||
|
@ -533,8 +533,8 @@ static struct sk_buff *dm9601_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
|
|||
int len;
|
||||
|
||||
/* format:
|
||||
b0: packet length low
|
||||
b1: packet length high
|
||||
b1: packet length low
|
||||
b2: packet length high
|
||||
b3..n: packet data
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue