summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2005-05-26 12:59:05 -0700
committerDavid S. Miller <davem@davemloft.net>2005-05-26 12:59:05 -0700
commitc6b3365391c626206f6789354794a81a010cb7a1 (patch)
treeda574716500222ef1a7c4c66d1891ba1c4d8fd95
parent92d63decc0b6a5d600f792fcf5f3ff9718c09a3d (diff)
downloadlinux-c6b3365391c626206f6789354794a81a010cb7a1.tar.gz
[TOKENRING]: be'ify trh_hdr, trllc, rif_cache_s
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/linux/if_tr.h6
-rw-r--r--net/802/tr.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/if_tr.h b/include/linux/if_tr.h
index a2b01e1e72f2..6688b414c529 100644
--- a/include/linux/if_tr.h
+++ b/include/linux/if_tr.h
@@ -36,8 +36,8 @@ struct trh_hdr {
 	__u8  fc;			/* frame control field */
 	__u8  daddr[TR_ALEN];		/* destination address */
 	__u8  saddr[TR_ALEN];		/* source address */
-	__u16 rcf;			/* route control field */
-	__u16 rseg[8];			/* routing registers */
+	__be16 rcf;			/* route control field */
+	__be16 rseg[8];			/* routing registers */
 };
 
 #ifdef __KERNEL__
@@ -55,7 +55,7 @@ struct trllc {
 	__u8  ssap;			/* source SAP */
 	__u8  llc;			/* LLC control field */
 	__u8  protid[3];		/* protocol id */
-	__u16 ethertype;		/* ether type field */
+	__be16 ethertype;		/* ether type field */
 };
 
 /* Token-Ring statistics collection data. */
diff --git a/net/802/tr.c b/net/802/tr.c
index 85293ccf7efc..3bfb86260f27 100644
--- a/net/802/tr.c
+++ b/net/802/tr.c
@@ -50,8 +50,8 @@ static void rif_check_expire(unsigned long dummy);
 struct rif_cache_s {	
 	unsigned char addr[TR_ALEN];
 	int iface;
-	__u16 rcf;
-	__u16 rseg[8];
+	__be16 rcf;
+	__be16 rseg[8];
 	struct rif_cache_s *next;
 	unsigned long last_used;
 	unsigned char local_ring;