Skip to content

Commit

Permalink
ipg: endianness annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 14, 2007
1 parent f53f413 commit 857e37d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/net/ipg.h
Original file line number Diff line number Diff line change
Expand Up @@ -776,17 +776,17 @@ enum ipg_regs {
* TFD field is 64 bits wide.
*/
struct ipg_tx {
u64 next_desc;
u64 tfc;
u64 frag_info;
__le64 next_desc;
__le64 tfc;
__le64 frag_info;
};

/* Receive Frame Descriptor. Note, each RFD field is 64 bits wide.
*/
struct ipg_rx {
u64 next_desc;
u64 rfs;
u64 frag_info;
__le64 next_desc;
__le64 rfs;
__le64 frag_info;
};

struct SJumbo {
Expand Down

0 comments on commit 857e37d

Please sign in to comment.