Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6cccd6e7 authored by Rolf Eike Beer's avatar Rolf Eike Beer Committed by Jeff Garzik
Browse files

r8169: add endianess annotations to [RT]xDesc



Signed-off-by: default avatarRolf Eike Beer <eike-kernel@sf-tec.de>
Signed-off-by: default avatarFrancois Romieu <romieu@fr.zoreil.com>
Cc: Edward Hsu <edward_hsu@realtek.com.tw>
parent e9f63f30
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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 {