mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 10:02:33 -04:00
r8169: add endianess annotations to [RT]xDesc
Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de> Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Cc: Edward Hsu <edward_hsu@realtek.com.tw>
This commit is contained in:
committed by
Jeff Garzik
parent
e9f63f3086
commit
6cccd6e7a2
@@ -362,15 +362,15 @@ enum desc_status_bit {
|
||||
#define RsvdMask 0x3fffc000
|
||||
|
||||
struct TxDesc {
|
||||
u32 opts1;
|
||||
u32 opts2;
|
||||
u64 addr;
|
||||
__le32 opts1;
|
||||
__le32 opts2;
|
||||
__le64 addr;
|
||||
};
|
||||
|
||||
struct RxDesc {
|
||||
u32 opts1;
|
||||
u32 opts2;
|
||||
u64 addr;
|
||||
__le32 opts1;
|
||||
__le32 opts2;
|
||||
__le64 addr;
|
||||
};
|
||||
|
||||
struct ring_info {
|
||||
|
||||
Reference in New Issue
Block a user