diff options
| author | David S. Miller <davem@davemloft.net> | 2010-03-22 22:59:47 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-03-25 14:56:32 -0400 |
| commit | bcbe53682f65330bdd9ad7eed9575d2ff536353a (patch) | |
| tree | f68663eb654ab83687ec6dc1f5ebaf9dec648089 | |
| parent | 80bb3a00fa314e3c5dbbd23a38bfaf94f2402b99 (diff) | |
via-velocity: Fix FLOW_CNTL_TX_RX handling in set_mii_flow_control()
Clear, don't set, ANAR_ASMDIR in this case.
Noticed by Roel Kluin.
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | drivers/net/via-velocity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index 3a486f3bad3d..bc278d4ee89d 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
| @@ -812,7 +812,7 @@ static void set_mii_flow_control(struct velocity_info *vptr) | |||
| 812 | 812 | ||
| 813 | case FLOW_CNTL_TX_RX: | 813 | case FLOW_CNTL_TX_RX: |
| 814 | MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs); | 814 | MII_REG_BITS_ON(ANAR_PAUSE, MII_REG_ANAR, vptr->mac_regs); |
| 815 | MII_REG_BITS_ON(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs); | 815 | MII_REG_BITS_OFF(ANAR_ASMDIR, MII_REG_ANAR, vptr->mac_regs); |
| 816 | break; | 816 | break; |
| 817 | 817 | ||
| 818 | case FLOW_CNTL_DISABLE: | 818 | case FLOW_CNTL_DISABLE: |
