diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2007-08-23 02:57:00 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:52:05 -0400 |
commit | 2929e7700fb64f58f9c501a293b98b6bf6c49403 (patch) | |
tree | ffb638ad6154bbf244149fbf4bb2fe649cdeff91 /drivers/net/tokenring/tms380tr.h | |
parent | b963dc1df78399a2166c2e6e3eb726a2dc98cf11 (diff) |
tms380tr: 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/tokenring/tms380tr.h')
-rw-r--r-- | drivers/net/tokenring/tms380tr.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/tokenring/tms380tr.h b/drivers/net/tokenring/tms380tr.h index 2a16078ac3fd..7daf74e31ccd 100644 --- a/drivers/net/tokenring/tms380tr.h +++ b/drivers/net/tokenring/tms380tr.h | |||
@@ -476,13 +476,13 @@ typedef struct { | |||
476 | * bytes = 0xC000 | 476 | * bytes = 0xC000 |
477 | */ | 477 | */ |
478 | u_int32_t FunctAddr; /* High order bytes = 0xC000 */ | 478 | u_int32_t FunctAddr; /* High order bytes = 0xC000 */ |
479 | u_int16_t RxListSize; /* RPL size: 0 (=26), 14, 20 or | 479 | __be16 RxListSize; /* RPL size: 0 (=26), 14, 20 or |
480 | * 26 bytes read by the adapter. | 480 | * 26 bytes read by the adapter. |
481 | * (Depending on the number of | 481 | * (Depending on the number of |
482 | * fragments/list) | 482 | * fragments/list) |
483 | */ | 483 | */ |
484 | u_int16_t TxListSize; /* TPL size */ | 484 | __be16 TxListSize; /* TPL size */ |
485 | u_int16_t BufSize; /* Is automatically rounded up to the | 485 | __be16 BufSize; /* Is automatically rounded up to the |
486 | * nearest nK boundary. | 486 | * nearest nK boundary. |
487 | */ | 487 | */ |
488 | u_int16_t FullDuplex; | 488 | u_int16_t FullDuplex; |
@@ -580,14 +580,14 @@ typedef struct { | |||
580 | /*--------------------- Send and Receive definitions -------------------*/ | 580 | /*--------------------- Send and Receive definitions -------------------*/ |
581 | #pragma pack(1) | 581 | #pragma pack(1) |
582 | typedef struct { | 582 | typedef struct { |
583 | u_int16_t DataCount; /* Value 0, even and odd values are | 583 | __be16 DataCount; /* Value 0, even and odd values are |
584 | * permitted; value is unaltered most | 584 | * permitted; value is unaltered most |
585 | * significant bit set: following | 585 | * significant bit set: following |
586 | * fragments last fragment: most | 586 | * fragments last fragment: most |
587 | * significant bit is not evaluated. | 587 | * significant bit is not evaluated. |
588 | * (???) | 588 | * (???) |
589 | */ | 589 | */ |
590 | u_int32_t DataAddr; /* Pointer to frame data fragment; | 590 | __be32 DataAddr; /* Pointer to frame data fragment; |
591 | * even or odd. | 591 | * even or odd. |
592 | */ | 592 | */ |
593 | } Fragment; | 593 | } Fragment; |
@@ -679,7 +679,7 @@ typedef struct { | |||
679 | typedef struct s_TPL TPL; | 679 | typedef struct s_TPL TPL; |
680 | 680 | ||
681 | struct s_TPL { /* Transmit Parameter List (align on even word boundaries) */ | 681 | struct s_TPL { /* Transmit Parameter List (align on even word boundaries) */ |
682 | u_int32_t NextTPLAddr; /* Pointer to next TPL in chain; if | 682 | __be32 NextTPLAddr; /* Pointer to next TPL in chain; if |
683 | * pointer is odd: this is the last | 683 | * pointer is odd: this is the last |
684 | * TPL. Pointing to itself can cause | 684 | * TPL. Pointing to itself can cause |
685 | * problems! | 685 | * problems! |
@@ -689,7 +689,7 @@ struct s_TPL { /* Transmit Parameter List (align on even word boundaries) */ | |||
689 | * significant bit first! Set by the | 689 | * significant bit first! Set by the |
690 | * adapter: CSTAT_COMPLETE status. | 690 | * adapter: CSTAT_COMPLETE status. |
691 | */ | 691 | */ |
692 | u_int16_t FrameSize; /* Number of bytes to be transmitted | 692 | __be16 FrameSize; /* Number of bytes to be transmitted |
693 | * as a frame including AC/FC, | 693 | * as a frame including AC/FC, |
694 | * Destination, Source, Routing field | 694 | * Destination, Source, Routing field |
695 | * not including CRC, FS, End Delimiter | 695 | * not including CRC, FS, End Delimiter |
@@ -1020,7 +1020,7 @@ enum SKB_STAT { | |||
1020 | #pragma pack(1) | 1020 | #pragma pack(1) |
1021 | typedef struct s_RPL RPL; | 1021 | typedef struct s_RPL RPL; |
1022 | struct s_RPL { /* Receive Parameter List */ | 1022 | struct s_RPL { /* Receive Parameter List */ |
1023 | u_int32_t NextRPLAddr; /* Pointer to next RPL in chain | 1023 | __be32 NextRPLAddr; /* Pointer to next RPL in chain |
1024 | * (normalized = physical 32 bit | 1024 | * (normalized = physical 32 bit |
1025 | * address) if pointer is odd: this | 1025 | * address) if pointer is odd: this |
1026 | * is last RPL. Pointing to itself can | 1026 | * is last RPL. Pointing to itself can |
@@ -1031,7 +1031,7 @@ struct s_RPL { /* Receive Parameter List */ | |||
1031 | * adapter in lists that start or end | 1031 | * adapter in lists that start or end |
1032 | * a frame. | 1032 | * a frame. |
1033 | */ | 1033 | */ |
1034 | volatile u_int16_t FrameSize; /* Number of bytes received as a | 1034 | volatile __be16 FrameSize; /* Number of bytes received as a |
1035 | * frame including AC/FC, Destination, | 1035 | * frame including AC/FC, Destination, |
1036 | * Source, Routing field not including | 1036 | * Source, Routing field not including |
1037 | * CRC, FS (Frame Status), End Delimiter | 1037 | * CRC, FS (Frame Status), End Delimiter |