mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 07:08:07 +00:00
synclink_gt endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
bda76dd160
commit
51ef9c57f0
1 changed files with 4 additions and 4 deletions
|
@ -206,10 +206,10 @@ static void flush_cond_wait(struct cond_wait **head);
|
||||||
*/
|
*/
|
||||||
struct slgt_desc
|
struct slgt_desc
|
||||||
{
|
{
|
||||||
unsigned short count;
|
__le16 count;
|
||||||
unsigned short status;
|
__le16 status;
|
||||||
unsigned int pbuf; /* physical address of data buffer */
|
__le32 pbuf; /* physical address of data buffer */
|
||||||
unsigned int next; /* physical address of next descriptor */
|
__le32 next; /* physical address of next descriptor */
|
||||||
|
|
||||||
/* driver book keeping */
|
/* driver book keeping */
|
||||||
char *buf; /* virtual address of data buffer */
|
char *buf; /* virtual address of data buffer */
|
||||||
|
|
Loading…
Add table
Reference in a new issue