mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 11:41:00 +07: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:
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 {
|
||||
|
Loading…
Reference in New Issue
Block a user