public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: mdio-ipq4019: fix possible invalid pointer dereference
@ 2022-11-15  4:50 Hui Tang
  2022-11-15 13:36 ` Andrew Lunn
  0 siblings, 1 reply; 3+ messages in thread
From: Hui Tang @ 2022-11-15  4:50 UTC (permalink / raw)
  To: davem, edumazet, kuba, mw, linux, andrew, pabeni
  Cc: netdev, linux-kernel, yusongping

priv->eth_ldo_rdy is saved the return value of devm_ioremap_resource(),
which !IS_ERR() should be used to check.

Fixes: 23a890d493e3 ("net: mdio: Add the reset function for IPQ MDIO driver")
Signed-off-by: Hui Tang <tanghui20@huawei.com>
---
 drivers/net/mdio/mdio-ipq4019.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/mdio/mdio-ipq4019.c b/drivers/net/mdio/mdio-ipq4019.c
index 4eba5a91075c..d7a1f7c56f97 100644
--- a/drivers/net/mdio/mdio-ipq4019.c
+++ b/drivers/net/mdio/mdio-ipq4019.c
@@ -188,7 +188,7 @@ static int ipq_mdio_reset(struct mii_bus *bus)
 	/* To indicate CMN_PLL that ethernet_ldo has been ready if platform resource 1
 	 * is specified in the device tree.
 	 */
-	if (priv->eth_ldo_rdy) {
+	if (!IS_ERR(priv->eth_ldo_rdy)) {
 		val = readl(priv->eth_ldo_rdy);
 		val |= BIT(0);
 		writel(val, priv->eth_ldo_rdy);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-17  8:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-15  4:50 [PATCH] net: mdio-ipq4019: fix possible invalid pointer dereference Hui Tang
2022-11-15 13:36 ` Andrew Lunn
2022-11-17  8:50   ` Hui Tang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox