aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tulip/tulip.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2007-08-23 00:43:22 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:52:00 -0400
commitc559a5bc9417c00ba2df59397a27eaf8d8e52aec (patch)
treed3f0896f675bb98824d87090423f49f5eb3204b2 /drivers/net/tulip/tulip.h
parent701181ac1d9ac465a3614061cb60ded4033c4d07 (diff)
tulip: endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/tulip/tulip.h')
-rw-r--r--drivers/net/tulip/tulip.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/tulip/tulip.h b/drivers/net/tulip/tulip.h
index 5a4d7270973e..3f69f53d7768 100644
--- a/drivers/net/tulip/tulip.h
+++ b/drivers/net/tulip/tulip.h
@@ -178,18 +178,18 @@ enum tulip_busconfig_bits {
178 178
179/* The Tulip Rx and Tx buffer descriptors. */ 179/* The Tulip Rx and Tx buffer descriptors. */
180struct tulip_rx_desc { 180struct tulip_rx_desc {
181 s32 status; 181 __le32 status;
182 s32 length; 182 __le32 length;
183 u32 buffer1; 183 __le32 buffer1;
184 u32 buffer2; 184 __le32 buffer2;
185}; 185};
186 186
187 187
188struct tulip_tx_desc { 188struct tulip_tx_desc {
189 s32 status; 189 __le32 status;
190 s32 length; 190 __le32 length;
191 u32 buffer1; 191 __le32 buffer1;
192 u32 buffer2; /* We use only buffer 1. */ 192 __le32 buffer2; /* We use only buffer 1. */
193}; 193};
194 194
195 195