aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ipg.h
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-10-14 14:41:19 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-14 15:41:52 -0400
commit857e37dc367142f25836fac42e045f08114bd4be (patch)
tree8f1344667a0493b229155bee33ac399405b7a492 /drivers/net/ipg.h
parentf53f4137baedc1be179880d35f390e20445428ba (diff)
ipg: endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/ipg.h')
-rw-r--r--drivers/net/ipg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/ipg.h b/drivers/net/ipg.h
index 1952d0dfd314..e418b9035cac 100644
--- a/drivers/net/ipg.h
+++ b/drivers/net/ipg.h
@@ -776,17 +776,17 @@ enum ipg_regs {
776 * TFD field is 64 bits wide. 776 * TFD field is 64 bits wide.
777 */ 777 */
778struct ipg_tx { 778struct ipg_tx {
779 u64 next_desc; 779 __le64 next_desc;
780 u64 tfc; 780 __le64 tfc;
781 u64 frag_info; 781 __le64 frag_info;
782}; 782};
783 783
784/* Receive Frame Descriptor. Note, each RFD field is 64 bits wide. 784/* Receive Frame Descriptor. Note, each RFD field is 64 bits wide.
785 */ 785 */
786struct ipg_rx { 786struct ipg_rx {
787 u64 next_desc; 787 __le64 next_desc;
788 u64 rfs; 788 __le64 rfs;
789 u64 frag_info; 789 __le64 frag_info;
790}; 790};
791 791
792struct SJumbo { 792struct SJumbo {