mirror of https://gitee.com/openkylin/linux.git
lan78xx: Remove not defined MAC_CR_GMII_EN_ bit from MAC_CR.
Remove not defined MAC_CR_GMII_EN_ bit from MAC_CR. Signed-off-by: Woojung Huh <woojung.huh@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
758c5c1174
commit
9110fe4a17
|
@ -1909,10 +1909,7 @@ static int lan78xx_reset(struct lan78xx_net *dev)
|
||||||
} while ((buf & PMT_CTL_PHY_RST_) || !(buf & PMT_CTL_READY_));
|
} while ((buf & PMT_CTL_PHY_RST_) || !(buf & PMT_CTL_READY_));
|
||||||
|
|
||||||
ret = lan78xx_read_reg(dev, MAC_CR, &buf);
|
ret = lan78xx_read_reg(dev, MAC_CR, &buf);
|
||||||
|
|
||||||
buf |= MAC_CR_GMII_EN_;
|
|
||||||
buf |= MAC_CR_AUTO_DUPLEX_ | MAC_CR_AUTO_SPEED_;
|
buf |= MAC_CR_AUTO_DUPLEX_ | MAC_CR_AUTO_SPEED_;
|
||||||
|
|
||||||
ret = lan78xx_write_reg(dev, MAC_CR, buf);
|
ret = lan78xx_write_reg(dev, MAC_CR, buf);
|
||||||
|
|
||||||
/* enable PHY interrupts */
|
/* enable PHY interrupts */
|
||||||
|
|
|
@ -549,7 +549,6 @@
|
||||||
#define LTM_INACTIVE1_TIMER10_ (0x0000FFFF)
|
#define LTM_INACTIVE1_TIMER10_ (0x0000FFFF)
|
||||||
|
|
||||||
#define MAC_CR (0x100)
|
#define MAC_CR (0x100)
|
||||||
#define MAC_CR_GMII_EN_ (0x00080000)
|
|
||||||
#define MAC_CR_EEE_TX_CLK_STOP_EN_ (0x00040000)
|
#define MAC_CR_EEE_TX_CLK_STOP_EN_ (0x00040000)
|
||||||
#define MAC_CR_EEE_EN_ (0x00020000)
|
#define MAC_CR_EEE_EN_ (0x00020000)
|
||||||
#define MAC_CR_EEE_TLAR_EN_ (0x00010000)
|
#define MAC_CR_EEE_TLAR_EN_ (0x00010000)
|
||||||
|
|
Loading…
Reference in New Issue