[U-Boot] [PATCH 2/3] net: phy: xilinx_phy: Add suuport for livetree

Grygorii Strashko grygorii.strashko at ti.com
Mon Jul 9 17:22:30 UTC 2018



On 07/06/2018 05:10 AM, Siva Durga Prasad Paladugu wrote:
> This patch adds support for livetree by using dev_..
> calls instead of fdtdec_.. .
> 
> Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu at xilinx.com>
> ---
>   drivers/net/phy/xilinx_phy.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/phy/xilinx_phy.c b/drivers/net/phy/xilinx_phy.c
> index 004cfcf..2e2a5cd 100644
> --- a/drivers/net/phy/xilinx_phy.c
> +++ b/drivers/net/phy/xilinx_phy.c
> @@ -103,8 +103,8 @@ static int xilinxphy_of_init(struct phy_device *phydev)
>   	u32 phytype;
>   
>   	debug("%s\n", __func__);
> -	phytype = fdtdec_get_int(gd->fdt_blob, dev_of_offset(phydev->dev),
> -				 "xlnx,phy-type", -1);
> +	phytype = dev_read_u32_default(phydev->dev,
> +				       "xlnx,phy-type", -1);
>   	if (phytype == XAE_PHY_TYPE_1000BASE_X)
>   		phydev->flags |= XAE_PHY_TYPE_1000BASE_X;
>   
> 

The same. NACK. Pls, check
https://patchwork.ozlabs.org/cover/936370/
and
https://patchwork.ozlabs.org/cover/936380/

any comments, tested-by are very welcome.


-- 
regards,
-grygorii


More information about the U-Boot mailing list