Message ID | 20230814210030.332859-1-artem.chernyshev@red-soft.ru (mailing list archive) |
---|---|
State | Accepted |
Commit | 9944d203fa63721b87eee84a89f7275dc3d25c05 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | broadcom: b44: Use b44_writephy() return value | expand |
On Tue, Aug 15, 2023 at 12:00:30AM +0300, Artem Chernyshev wrote: > Return result of b44_writephy() instead of zero to > deal with possible error. > > Found by Linux Verification Center (linuxtesting.org) with SVACE. > > Signed-off-by: Artem Chernyshev <artem.chernyshev@red-soft.ru> > --- > drivers/net/ethernet/broadcom/b44.c | 8 +++----- > 1 file changed, 3 insertions(+), 5 deletions(-) > Thanks, Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Hello: This patch was applied to netdev/net.git (main) by David S. Miller <davem@davemloft.net>: On Tue, 15 Aug 2023 00:00:30 +0300 you wrote: > Return result of b44_writephy() instead of zero to > deal with possible error. > > Found by Linux Verification Center (linuxtesting.org) with SVACE. > > Signed-off-by: Artem Chernyshev <artem.chernyshev@red-soft.ru> > > [...] Here is the summary with links: - broadcom: b44: Use b44_writephy() return value https://git.kernel.org/netdev/net/c/9944d203fa63 You are awesome, thank you!
diff --git a/drivers/net/ethernet/broadcom/b44.c b/drivers/net/ethernet/broadcom/b44.c index 392ec09a1d8a..7f94e42ae277 100644 --- a/drivers/net/ethernet/broadcom/b44.c +++ b/drivers/net/ethernet/broadcom/b44.c @@ -1793,11 +1793,9 @@ static int b44_nway_reset(struct net_device *dev) b44_readphy(bp, MII_BMCR, &bmcr); b44_readphy(bp, MII_BMCR, &bmcr); r = -EINVAL; - if (bmcr & BMCR_ANENABLE) { - b44_writephy(bp, MII_BMCR, - bmcr | BMCR_ANRESTART); - r = 0; - } + if (bmcr & BMCR_ANENABLE) + r = b44_writephy(bp, MII_BMCR, + bmcr | BMCR_ANRESTART); spin_unlock_irq(&bp->lock); return r;
Return result of b44_writephy() instead of zero to deal with possible error. Found by Linux Verification Center (linuxtesting.org) with SVACE. Signed-off-by: Artem Chernyshev <artem.chernyshev@red-soft.ru> --- drivers/net/ethernet/broadcom/b44.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-)