Commit 813cc94c authored by Tianyi Jing's avatar Tianyi Jing Committed by Guenter Roeck

hwmon: (xgene) Fix ioremap and memremap leak

Smatch reports:

drivers/hwmon/xgene-hwmon.c:757 xgene_hwmon_probe() warn:
'ctx->pcc_comm_addr' from ioremap() not released on line: 757.

This is because in drivers/hwmon/xgene-hwmon.c:701 xgene_hwmon_probe(),
ioremap and memremap is not released, which may cause a leak.

To fix this, ioremap and memremap is modified to devm_ioremap and
devm_memremap.
Signed-off-by: default avatarTianyi Jing <jingfelix@hust.edu.cn>
Reviewed-by: default avatarDongliang Mu <dzm91@hust.edu.cn>
Link: https://lore.kernel.org/r/20230318143851.2191625-1-jingfelix@hust.edu.cn
[groeck: Fixed formatting and subject]
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 2315332e
...@@ -698,11 +698,11 @@ static int xgene_hwmon_probe(struct platform_device *pdev) ...@@ -698,11 +698,11 @@ static int xgene_hwmon_probe(struct platform_device *pdev)
ctx->comm_base_addr = pcc_chan->shmem_base_addr; ctx->comm_base_addr = pcc_chan->shmem_base_addr;
if (ctx->comm_base_addr) { if (ctx->comm_base_addr) {
if (version == XGENE_HWMON_V2) if (version == XGENE_HWMON_V2)
ctx->pcc_comm_addr = (void __force *)ioremap( ctx->pcc_comm_addr = (void __force *)devm_ioremap(&pdev->dev,
ctx->comm_base_addr, ctx->comm_base_addr,
pcc_chan->shmem_size); pcc_chan->shmem_size);
else else
ctx->pcc_comm_addr = memremap( ctx->pcc_comm_addr = devm_memremap(&pdev->dev,
ctx->comm_base_addr, ctx->comm_base_addr,
pcc_chan->shmem_size, pcc_chan->shmem_size,
MEMREMAP_WB); MEMREMAP_WB);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment