Re: [PATCH 1/2] r8169: multicast register update (sync with Realtek's 8.004.00 8168 driver)
From: Glen Gray <hidden>
Date: 2008-06-30 10:14:26
Hey Francois, Do you think this might resolve my issues with multicast SAP announcements ? -- Glen Gray [off-list ref] Digital Depot, Thomas Street Software Engineering Manager Dublin 8, Ireland Lincor Solutions Ltd. Ph: +353 (0) 1 4893682 On 29 Jun 2008, at 14:18, Francois Romieu wrote:
quoted hunk ↗ jump to hunk
The layout of the 8168 serie is different from that of the 8110 one. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Cc: Edward Hsu <redacted> --- drivers/net/r8169.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index 6572425..9086e81 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c@@ -3098,8 +3098,10 @@ static void rtl_set_rx_mode(struct net_device*dev) (tp->mac_version == RTL_GIGA_MAC_VER_15) || (tp->mac_version == RTL_GIGA_MAC_VER_16) || (tp->mac_version == RTL_GIGA_MAC_VER_17)) { - mc_filter[0] = 0xffffffff; - mc_filter[1] = 0xffffffff; + u32 data = mc_filter[0]; + + mc_filter[0] = swab32(mc_filter[1]); + mc_filter[1] = swab32(data); } RTL_W32(MAR0 + 0, mc_filter[0]); -- 1.5.3.3 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html