[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Y4yIfi4GZQZ0D0h7@unreal>
Date: Sun, 4 Dec 2022 13:46:06 +0200
From: Leon Romanovsky <leon@...nel.org>
To: Lucas Stach <l.stach@...gutronix.de>
Cc: linux-usb@...r.kernel.org, netdev@...r.kernel.org,
"David S . Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>, kernel@...gutronix.de,
patchwork-lst@...gutronix.de
Subject: Re: [PATCH 1/2] net: asix: Simplify return value check after
asix_check_host_enable
On Thu, Dec 01, 2022 at 06:55:24PM +0100, Lucas Stach wrote:
> Any negative return value from this function is indicative of an
> error. Simplify the condition to cover all possible error codes.
Some calls to asix_read_cmd() in asix_check_host_enable() return -ENODATA
and such are simply skipped (... continue ...). It is unclear if it
indicates an error or not.
Thanks
>
> Signed-off-by: Lucas Stach <l.stach@...gutronix.de>
> ---
> drivers/net/usb/asix_common.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/usb/asix_common.c b/drivers/net/usb/asix_common.c
> index 72ffc89b477a..be1e103b7a95 100644
> --- a/drivers/net/usb/asix_common.c
> +++ b/drivers/net/usb/asix_common.c
> @@ -504,7 +504,7 @@ static int __asix_mdio_read(struct net_device *netdev, int phy_id, int loc,
> mutex_lock(&dev->phy_mutex);
>
> ret = asix_check_host_enable(dev, in_pm);
> - if (ret == -ENODEV || ret == -ETIMEDOUT) {
> + if (ret < 0) {
> mutex_unlock(&dev->phy_mutex);
> return ret;
> }
> @@ -542,7 +542,7 @@ static int __asix_mdio_write(struct net_device *netdev, int phy_id, int loc,
> mutex_lock(&dev->phy_mutex);
>
> ret = asix_check_host_enable(dev, in_pm);
> - if (ret == -ENODEV)
> + if (ret < 0)
> goto out;
>
> ret = asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2,
> --
> 2.30.2
>
Powered by blists - more mailing lists