* [PATCH][R8169] Add endianess annotations to [RT]xDesc
@ 2007-05-16 11:10 Rolf Eike Beer
2007-05-17 22:09 ` Francois Romieu
0 siblings, 1 reply; 2+ messages in thread
From: Rolf Eike Beer @ 2007-05-16 11:10 UTC (permalink / raw)
To: Francois Romieu; +Cc: jeff, netdev
[R8169] Add endianess annotations to [RT]xDesc
Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
---
commit 8b36037f072047e61557506ee917dcc25680bd69
tree faafe5e664affabef85ff4dcab280338fd528fae
parent b26c4a9f50ccfade25e3699f616ce97590dc2cb7
author Rolf Eike Beer <eike-kernel@sf-tec.de> Wed, 16 May 2007 08:23:39 +0200
committer Rolf Eike Beer <eike-kernel@sf-tec.de> Wed, 16 May 2007 08:23:39 +0200
drivers/net/r8169.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c
index 45876a8..2261835 100644
--- a/drivers/net/r8169.c
+++ b/drivers/net/r8169.c
@@ -405,15 +405,15 @@ enum _DescStatusBit {
#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 {
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH][R8169] Add endianess annotations to [RT]xDesc
2007-05-16 11:10 [PATCH][R8169] Add endianess annotations to [RT]xDesc Rolf Eike Beer
@ 2007-05-17 22:09 ` Francois Romieu
0 siblings, 0 replies; 2+ messages in thread
From: Francois Romieu @ 2007-05-17 22:09 UTC (permalink / raw)
To: Rolf Eike Beer; +Cc: jeff, netdev
Rolf Eike Beer <eike-kernel@sf-tec.de> :
> [R8169] Add endianess annotations to [RT]xDesc
Thanks, I queue it.
--
Ueimor
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-05-17 22:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-16 11:10 [PATCH][R8169] Add endianess annotations to [RT]xDesc Rolf Eike Beer
2007-05-17 22:09 ` Francois Romieu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).