Re: [PATCHv2 2/2] net: asix: init mdiobus from one function

From: Grant Grundler
Date: Tue Mar 07 2023 - 15:13:59 EST


On Tue, Mar 7, 2023 at 12:05 PM Grant Grundler <grundler@xxxxxxxxxxxx> wrote:
>
> Make asix driver consistent with other drivers (e.g. tg3 and r8169) which
> use mdiobus calls: setup and tear down be handled in one function each.
>
> Signed-off-by: Grant Grundler <grundler@xxxxxxxxxxxx>
> ---
> drivers/net/usb/asix_devices.c | 27 ++++++++++++++++-----------
> 1 file changed, 16 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/net/usb/asix_devices.c b/drivers/net/usb/asix_devices.c
> index 21845b88a64b9..d7caab4493d15 100644
> --- a/drivers/net/usb/asix_devices.c
> +++ b/drivers/net/usb/asix_devices.c
> @@ -637,7 +637,7 @@ static int asix_resume(struct usb_interface *intf)
> return usbnet_resume(intf);
> }
>
> -static int ax88772_init_mdio(struct usbnet *dev)
> +static int ax88772_mdio_register(struct usbnet *dev)
> {
> struct asix_common_private *priv = dev->driver_priv;
> int ret;
> @@ -657,10 +657,22 @@ static int ax88772_init_mdio(struct usbnet *dev)
> ret = mdiobus_register(priv->mdio);
> if (ret) {
> netdev_err(dev->net, "Could not register MDIO bus (err %d)\n", ret);
> - mdiobus_free(priv->mdio);
> - priv->mdio = NULL;
> + goto mdio_register_err;
> }
>
> + priv->phydev = mdiobus_get_phy(priv->mdio, priv->phy_addr);
> + if (!priv->phydev) {
> + netdev_err(dev->net, "Could not find PHY\n");
> + ret=-ENODEV;

My apologies: checkpatch wants spaces around "=" and especially
because it should be "ret = -ENODEV".

I can resend - but is this trivial enough to fix up by maintainer?

cheers,
grant

> + goto mdio_phy_err;
> + }
> +
> + return 0;
> +
> +mdio_phy_err:
> + mdiobus_unregister(priv->mdio);
> +mdio_register_err:
> + mdiobus_free(priv->mdio);
> return ret;
> }
>
> @@ -675,13 +687,6 @@ static int ax88772_init_phy(struct usbnet *dev)
> struct asix_common_private *priv = dev->driver_priv;
> int ret;
>
> - priv->phydev = mdiobus_get_phy(priv->mdio, priv->phy_addr);
> - if (!priv->phydev) {
> - netdev_err(dev->net, "Could not find PHY\n");
> - ax88772_mdio_unregister(priv);
> - return -ENODEV;
> - }
> -
> ret = phy_connect_direct(dev->net, priv->phydev, &asix_adjust_link,
> PHY_INTERFACE_MODE_INTERNAL);
> if (ret) {
> @@ -799,7 +804,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
> priv->presvd_phy_bmcr = 0;
> priv->presvd_phy_advertise = 0;
>
> - ret = ax88772_init_mdio(dev);
> + ret = ax88772_mdio_register(dev);
> if (ret)
> return ret;
>
> --
> 2.39.2
>