aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tulip/tulip.h
diff options
context:
space:
mode:
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