diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-08-23 03:04:12 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:52:06 -0400 |
commit | fb8e4444cc8c7719d9947e21a93e2e84bb1b36eb (patch) | |
tree | c6312526e71ca9d234985a6f4d6336848e353550 /drivers/net/cxgb3/common.h | |
parent | bd7eb1c549188e4f7993e324b1bbe267fc13675c (diff) |
cxgb3: trivial 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/cxgb3/common.h')
-rw-r--r-- | drivers/net/cxgb3/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/cxgb3/common.h b/drivers/net/cxgb3/common.h index 3e5b0db7784e..99c75d30f67a 100644 --- a/drivers/net/cxgb3/common.h +++ b/drivers/net/cxgb3/common.h | |||
@@ -168,8 +168,8 @@ enum { | |||
168 | }; | 168 | }; |
169 | 169 | ||
170 | struct sg_ent { /* SGE scatter/gather entry */ | 170 | struct sg_ent { /* SGE scatter/gather entry */ |
171 | u32 len[2]; | 171 | __be32 len[2]; |
172 | u64 addr[2]; | 172 | __be64 addr[2]; |
173 | }; | 173 | }; |
174 | 174 | ||
175 | #ifndef SGE_NUM_GENBITS | 175 | #ifndef SGE_NUM_GENBITS |