Skip to content

Commit

Permalink
stmmac: dwmac-loongson:Fix missing return value
Browse files Browse the repository at this point in the history
[ Upstream commit 5289de5 ]

Add the return value when phy_mode < 0.

Signed-off-by: zhaoxiao <long870912@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
zhaoxiao authored and gregkh committed Sep 22, 2021
1 parent a308dea commit 54f6221
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c
Expand Up @@ -109,8 +109,10 @@ static int loongson_dwmac_probe(struct pci_dev *pdev, const struct pci_device_id
plat->bus_id = pci_dev_id(pdev);

phy_mode = device_get_phy_mode(&pdev->dev);
if (phy_mode < 0)
if (phy_mode < 0) {
dev_err(&pdev->dev, "phy_mode not found\n");
return phy_mode;
}

plat->phy_interface = phy_mode;
plat->interface = PHY_INTERFACE_MODE_GMII;
Expand Down

0 comments on commit 54f6221

Please sign in to comment.