r8169 endianness

2007-12-23 Thread Linux Kernel Mailing List
Gitweb: 
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=95e0918dbb6d83020ef3eb0a4276413264abd14d
Commit: 95e0918dbb6d83020ef3eb0a4276413264abd14d
Parent: 78ce8d3d1c75c22ae593ad4ccaffa19ee0e2576d
Author: Al Viro <[EMAIL PROTECTED]>
AuthorDate: Sat Dec 22 18:55:39 2007 +
Committer:  Jeff Garzik <[EMAIL PROTECTED]>
CommitDate: Sat Dec 22 22:53:07 2007 -0500

r8169 endianness

missing conversions in a couple of places

Signed-off-by: Al Viro <[EMAIL PROTECTED]>
Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/r8169.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c
index 1f647b9..5863190 100644
--- a/drivers/net/r8169.c
+++ b/drivers/net/r8169.c
@@ -2211,7 +2211,7 @@ out:
 
 static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
 {
-   desc->addr = 0x0badbadbadbadbadull;
+   desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
 }
 
@@ -2835,7 +2835,7 @@ static int rtl8169_rx_interrupt(struct net_device *dev,
}
 
/* Work around for AMD plateform. */
-   if ((desc->opts2 & 0xfffe000) &&
+   if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
(tp->mac_version == RTL_GIGA_MAC_VER_05)) {
desc->opts2 = 0;
cur_rx++;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


r8169: endianness

2007-10-11 Thread Linux Kernel Mailing List
Gitweb: 
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b1eab70130fd60082cce11caba14fe8c99a018e9
Commit: b1eab70130fd60082cce11caba14fe8c99a018e9
Parent: 88b1943bd3e4d2620e5936181861e00bf6236aa4
Author: Al Viro <[EMAIL PROTECTED]>
AuthorDate: Thu Aug 23 02:30:16 2007 -0400
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 16:52:03 2007 -0700

r8169: endianness

Signed-off-by: Al Viro <[EMAIL PROTECTED]>
Signed-off-by: Jeff Garzik <[EMAIL PROTECTED]>
---
 drivers/net/r8169.c |   26 +-
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c
index eecd811..419c00c 100644
--- a/drivers/net/r8169.c
+++ b/drivers/net/r8169.c
@@ -977,19 +977,19 @@ static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
 };
 
 struct rtl8169_counters {
-   u64 tx_packets;
-   u64 rx_packets;
-   u64 tx_errors;
-   u32 rx_errors;
-   u16 rx_missed;
-   u16 align_errors;
-   u32 tx_one_collision;
-   u32 tx_multi_collision;
-   u64 rx_unicast;
-   u64 rx_broadcast;
-   u32 rx_multicast;
-   u16 tx_aborted;
-   u16 tx_underun;
+   __le64  tx_packets;
+   __le64  rx_packets;
+   __le64  tx_errors;
+   __le32  rx_errors;
+   __le16  rx_missed;
+   __le16  align_errors;
+   __le32  tx_one_collision;
+   __le32  tx_multi_collision;
+   __le64  rx_unicast;
+   __le64  rx_broadcast;
+   __le32  rx_multicast;
+   __le16  tx_aborted;
+   __le16  tx_underun;
 };
 
 static int rtl8169_get_sset_count(struct net_device *dev, int sset)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html