Re: [U-Boot] [PATCH 1/2] net: macb: explicitly pass phy_adr to mdio read and write

2019-11-29 Thread Joe Hershberger
On Wed, Oct 2, 2019 at 2:47 PM Josef Holzmayr wrote: > > To support accessing arbitrary addresses the mii/mdio bus it is > neccesary that the macb_mdio_read and macb_mdio_write functions > do not implicitly use the address of the connected phy. > > The function signature is extended according to

[U-Boot] [PATCH 1/2] net: macb: explicitly pass phy_adr to mdio read and write

2019-10-02 Thread Josef Holzmayr
To support accessing arbitrary addresses the mii/mdio bus it is neccesary that the macb_mdio_read and macb_mdio_write functions do not implicitly use the address of the connected phy. The function signature is extended according to the Linux kernel equivalent. Signed-off-by: Josef Holzmayr ---