diff options
author | Andrew Victor <andrew@sanpeople.com> | 2007-05-02 12:11:38 +0200 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-05-08 01:30:21 -0400 |
commit | 8bc354730bc877ebdf35c692460b01e624934aea (patch) | |
tree | 94db83b7fd7152bb522cd5af442fbe49ec16c8e7 /drivers/net | |
parent | 6b4aea7352bed6e2fdb59a3fe24ce2b42b31c35a (diff) | |
download | linux-8bc354730bc877ebdf35c692460b01e624934aea.tar.bz2 |
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 <Lars.Reemts@entwicklung.eq-3.de>
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/arm/at91_ether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index b9cb5cb4d97f..ef2cc80256a3 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]); } /* |