Commit 53c03f5c authored by Al Viro's avatar Al Viro Committed by David S. Miller

via-rhine: endianness

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent b1eab701
...@@ -335,16 +335,16 @@ enum wol_bits { ...@@ -335,16 +335,16 @@ enum wol_bits {
/* The Rx and Tx buffer descriptors. */ /* The Rx and Tx buffer descriptors. */
struct rx_desc { struct rx_desc {
s32 rx_status; __le32 rx_status;
u32 desc_length; /* Chain flag, Buffer/frame length */ __le32 desc_length; /* Chain flag, Buffer/frame length */
u32 addr; __le32 addr;
u32 next_desc; __le32 next_desc;
}; };
struct tx_desc { struct tx_desc {
s32 tx_status; __le32 tx_status;
u32 desc_length; /* Chain flag, Tx Config, Frame length */ __le32 desc_length; /* Chain flag, Tx Config, Frame length */
u32 addr; __le32 addr;
u32 next_desc; __le32 next_desc;
}; };
/* Initial value for tx_desc.desc_length, Buffer size goes to bits 0-10 */ /* Initial value for tx_desc.desc_length, Buffer size goes to bits 0-10 */
......
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