From: Andrew Victor Date: Wed, 2 May 2007 10:11:38 +0000 (+0200) Subject: AT91RM9200 Ethernet: Fix multicast addressing X-Git-Tag: v2.6.22-rc1~355^2~12 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=8bc354730bc877ebdf35c692460b01e624934aea;p=linux-2.6-omap-h63xx.git AT91RM9200 Ethernet: Fix multicast addressing The order that the two 32-bit words written to the Hash Address (Low, High) Registers for matching of multicast addresses is incorrect. Signed-off-by: Lars Reemts Signed-off-by: Andrew Victor Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index b9cb5cb4d97..ef2cc80256a 100644 --- a/drivers/net/arm/at91_ether.c +++ b/drivers/net/arm/at91_ether.c @@ -571,8 +571,8 @@ static void at91ether_sethashtable(struct net_device *dev) mc_filter[bitnr >> 5] |= 1 << (bitnr & 31); } - at91_emac_write(AT91_EMAC_HSH, mc_filter[0]); - at91_emac_write(AT91_EMAC_HSL, mc_filter[1]); + at91_emac_write(AT91_EMAC_HSL, mc_filter[0]); + at91_emac_write(AT91_EMAC_HSH, mc_filter[1]); } /*