Re: [PATCH net v3] net/phy: fix DP83865 10 Mbps HDX loopback disable function

2019-09-21 Thread Jakub Kicinski
On Wed, 18 Sep 2019 19:27:55 +0300, Peter Mamonov wrote: > According to the DP83865 datasheet "the 10 Mbps HDX loopback can be > disabled in the expanded memory register 0x1C0.1". The driver erroneously > used bit 0 instead of bit 1. > > Fixes: 4621bf129856 ("phy: Add file missed in previous commi

Re: [PATCH net v3] net/phy: fix DP83865 10 Mbps HDX loopback disable function

2019-09-18 Thread Andrew Lunn
On Wed, Sep 18, 2019 at 07:27:55PM +0300, Peter Mamonov wrote: > According to the DP83865 datasheet "the 10 Mbps HDX loopback can be > disabled in the expanded memory register 0x1C0.1". The driver erroneously > used bit 0 instead of bit 1. > > Fixes: 4621bf129856 ("phy: Add file missed in previous

[PATCH net v3] net/phy: fix DP83865 10 Mbps HDX loopback disable function

2019-09-18 Thread Peter Mamonov
According to the DP83865 datasheet "the 10 Mbps HDX loopback can be disabled in the expanded memory register 0x1C0.1". The driver erroneously used bit 0 instead of bit 1. Fixes: 4621bf129856 ("phy: Add file missed in previous commit.") Signed-off-by: Peter Mamonov --- Changes since v2: - None Ch