diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:34:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:51 -0400 |
commit | 51ef9c57f0be4945aa78b83d64aca34f41e351ce (patch) | |
tree | 6c39ee99b05d2eac97eb66263415dc37698e3fab | |
parent | bda76dd1600cc32a753bb9ae45dbe1d625aba92a (diff) |
synclink_gt endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/char/synclink_gt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/char/synclink_gt.c b/drivers/char/synclink_gt.c index 2f97d2f8f916..64e835f62438 100644 --- a/drivers/char/synclink_gt.c +++ b/drivers/char/synclink_gt.c | |||
@@ -206,10 +206,10 @@ static void flush_cond_wait(struct cond_wait **head); | |||
206 | */ | 206 | */ |
207 | struct slgt_desc | 207 | struct slgt_desc |
208 | { | 208 | { |
209 | unsigned short count; | 209 | __le16 count; |
210 | unsigned short status; | 210 | __le16 status; |
211 | unsigned int pbuf; /* physical address of data buffer */ | 211 | __le32 pbuf; /* physical address of data buffer */ |
212 | unsigned int next; /* physical address of next descriptor */ | 212 | __le32 next; /* physical address of next descriptor */ |
213 | 213 | ||
214 | /* driver book keeping */ | 214 | /* driver book keeping */ |
215 | char *buf; /* virtual address of data buffer */ | 215 | char *buf; /* virtual address of data buffer */ |