diff options
author | Dale Farnsworth <dale@farnsworth.org> | 2005-09-02 15:36:48 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-05 18:08:30 -0400 |
commit | 7342cd810cfd73120687d5323846e5c114cb23bb (patch) | |
tree | 60106923617dae852111129609bc68e6b4be3aeb /drivers/net/mv643xx_eth.h | |
parent | 8f543718ea1c20795853bf065f1dcb510f210465 (diff) |
[PATCH] mv643xx: Fix promiscuous mode handling
mv643xx_eth_get_config_reg() was reading the wrong register.
mv643xx_eth_set_config_reg() was or'ing instead of setting the
register. These functions are trivial and both are called only from
mv643xx_eth_set_rx_mode() when changing to/from promiscuous mode.
Remove both functions and do the operations directly in
mv643xx_eth_set_rx_mode().
Also, maintain promiscuous mode setting across port resets.
Signed-off-by: Dale Farnsworth <dale@farnsworth.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/mv643xx_eth.h')
-rw-r--r-- | drivers/net/mv643xx_eth.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/mv643xx_eth.h b/drivers/net/mv643xx_eth.h index 7678b59c2952..bcfda5192da0 100644 --- a/drivers/net/mv643xx_eth.h +++ b/drivers/net/mv643xx_eth.h | |||
@@ -408,10 +408,6 @@ static void eth_port_init(struct mv643xx_private *mp); | |||
408 | static void eth_port_reset(unsigned int eth_port_num); | 408 | static void eth_port_reset(unsigned int eth_port_num); |
409 | static void eth_port_start(struct mv643xx_private *mp); | 409 | static void eth_port_start(struct mv643xx_private *mp); |
410 | 410 | ||
411 | static void ethernet_set_config_reg(unsigned int eth_port_num, | ||
412 | unsigned int value); | ||
413 | static unsigned int ethernet_get_config_reg(unsigned int eth_port_num); | ||
414 | |||
415 | /* Port MAC address routines */ | 411 | /* Port MAC address routines */ |
416 | static void eth_port_uc_addr_set(unsigned int eth_port_num, | 412 | static void eth_port_uc_addr_set(unsigned int eth_port_num, |
417 | unsigned char *p_addr); | 413 | unsigned char *p_addr); |