Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15754
b: refs/heads/master
c: 65497da
h: refs/heads/master
v: v3
  • Loading branch information
shemminger@osdl.org authored and Jeff Garzik committed Dec 1, 2005
1 parent 0ee06a2 commit 76ad2b6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2224795d7e4c7f7e44fe21f0fa067d62539308fb
refs/heads/master: 65497dacd8104004f5115dcb2dfe1bf697154ce9
20 changes: 10 additions & 10 deletions trunk/drivers/net/sky2.h
Original file line number Diff line number Diff line change
Expand Up @@ -1746,31 +1746,31 @@ enum {
*/
struct sky2_tx_le {
union {
u32 addr;
__le32 addr;
struct {
u16 offset;
u16 start;
__le16 offset;
__le16 start;
} csum __attribute((packed));
struct {
u16 size;
u16 rsvd;
__le16 size;
__le16 rsvd;
} tso __attribute((packed));
} tx;
u16 length; /* also vlan tag or checksum start */
__le16 length; /* also vlan tag or checksum start */
u8 ctrl;
u8 opcode;
} __attribute((packed));

struct sky2_rx_le {
u32 addr;
u16 length;
__le32 addr;
__le16 length;
u8 ctrl;
u8 opcode;
} __attribute((packed));;

struct sky2_status_le {
u32 status; /* also checksum */
u16 length; /* also vlan tag */
__le32 status; /* also checksum */
__le16 length; /* also vlan tag */
u8 link;
u8 opcode;
} __attribute((packed));
Expand Down

0 comments on commit 76ad2b6

Please sign in to comment.