mirror of https://gitee.com/openkylin/linux.git
staging: et131x: Add ethtool printout to match MII regs
In the ethtool call et131x_get_regs(), some MII regs are missing. Add them to the regs returned. Signed-off-by: Mark Einon <mark.einon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
26907840e6
commit
01e14a4c58
|
@ -3587,7 +3587,12 @@ static void et131x_get_regs(struct net_device *netdev,
|
||||||
et131x_mii_read(adapter, 0x08, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, 0x08, (u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, MII_CTRL1000, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, MII_CTRL1000, (u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, MII_STAT1000, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, MII_STAT1000, (u16 *)®s_buff[num++]);
|
||||||
|
et131x_mii_read(adapter, 0x0b, (u16 *)®s_buff[num++]);
|
||||||
|
et131x_mii_read(adapter, 0x0c, (u16 *)®s_buff[num++]);
|
||||||
|
et131x_mii_read(adapter, MII_MMD_CTRL, (u16 *)®s_buff[num++]);
|
||||||
|
et131x_mii_read(adapter, MII_MMD_DATA, (u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, MII_ESTATUS, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, MII_ESTATUS, (u16 *)®s_buff[num++]);
|
||||||
|
|
||||||
et131x_mii_read(adapter, PHY_INDEX_REG, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, PHY_INDEX_REG, (u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, PHY_DATA_REG, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, PHY_DATA_REG, (u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
|
et131x_mii_read(adapter, PHY_MPHY_CONTROL_REG,
|
||||||
|
@ -3596,6 +3601,7 @@ static void et131x_get_regs(struct net_device *netdev,
|
||||||
(u16 *)®s_buff[num++]);
|
(u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, PHY_LOOPBACK_CONTROL+1,
|
et131x_mii_read(adapter, PHY_LOOPBACK_CONTROL+1,
|
||||||
(u16 *)®s_buff[num++]);
|
(u16 *)®s_buff[num++]);
|
||||||
|
|
||||||
et131x_mii_read(adapter, PHY_REGISTER_MGMT_CONTROL,
|
et131x_mii_read(adapter, PHY_REGISTER_MGMT_CONTROL,
|
||||||
(u16 *)®s_buff[num++]);
|
(u16 *)®s_buff[num++]);
|
||||||
et131x_mii_read(adapter, PHY_CONFIG, (u16 *)®s_buff[num++]);
|
et131x_mii_read(adapter, PHY_CONFIG, (u16 *)®s_buff[num++]);
|
||||||
|
|
Loading…
Reference in New Issue