[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20221108073430.29172-1-yuehaibing@huawei.com>
Date: Tue, 8 Nov 2022 15:34:30 +0800
From: YueHaibing <yuehaibing@...wei.com>
To: <vincent.sunplus@...il.com>, <vkoul@...nel.org>,
<kishon@...nel.org>
CC: <linux-usb@...r.kernel.org>, <linux-phy@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>, YueHaibing <yuehaibing@...wei.com>
Subject: [PATCH v2] phy: usb: sunplus: Fix memleak in update_disc_vol()
'otp_v' is allocated in nvmem_cell_read(), it should be freed
before return.
Fixes: 99d9ccd97385 ("phy: usb: Add USB2.0 phy driver for Sunplus SP7021")
Signed-off-by: YueHaibing <yuehaibing@...wei.com>
---
v2: free otp_v before return
---
drivers/phy/sunplus/phy-sunplus-usb2.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/phy/sunplus/phy-sunplus-usb2.c b/drivers/phy/sunplus/phy-sunplus-usb2.c
index e827b79f6d49..62d5cb5c7c9d 100644
--- a/drivers/phy/sunplus/phy-sunplus-usb2.c
+++ b/drivers/phy/sunplus/phy-sunplus-usb2.c
@@ -105,6 +105,9 @@ static int update_disc_vol(struct sp_usbphy *usbphy)
val = (val & ~J_DISC) | set;
writel(val, usbphy->phy_regs + CONFIG7);
+ if (!IS_ERR(otp_v))
+ kfree(otp_v);
+
return 0;
}
--
2.17.1
Powered by blists - more mailing lists