diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-08-23 06:59:11 +0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-11 03:51:59 +0400 |
commit | 701181ac1d9ac465a3614061cb60ded4033c4d07 (patch) | |
tree | e369e1a0923d6dc29ef7c75ec166fe19b90add97 /include/linux/arcdevice.h | |
parent | 05d2fec9f5e5fd1d7169435631b9d55ae4c566d1 (diff) | |
download | linux-701181ac1d9ac465a3614061cb60ded4033c4d07.tar.xz |
arcnet endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include/linux/arcdevice.h')
-rw-r--r-- | include/linux/arcdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/arcdevice.h b/include/linux/arcdevice.h index 2f85049cfb3d..fde675872c56 100644 --- a/include/linux/arcdevice.h +++ b/include/linux/arcdevice.h @@ -214,7 +214,7 @@ extern struct ArcProto *arc_proto_map[256], *arc_proto_default, */ struct Incoming { struct sk_buff *skb; /* packet data buffer */ - uint16_t sequence; /* sequence number of assembly */ + __be16 sequence; /* sequence number of assembly */ uint8_t lastpacket, /* number of last packet (from 1) */ numpackets; /* number of packets in split */ }; @@ -292,7 +292,7 @@ struct arcnet_local { struct { uint16_t sequence; /* sequence number (incs with each packet) */ - uint16_t aborted_seq; + __be16 aborted_seq; struct Incoming incoming[256]; /* one from each address */ } rfc1201; |