reset: hisilicon: fix potential NULL pointer dereference
commit e9a2310fb689151166df7fd9971093362d34bd79 upstream.
There is a potential execution path in which function
platform_get_resource() returns NULL. If this happens,
we will end up having a NULL pointer dereference.
Fix this by replacing devm_ioremap with devm_ioremap_resource,
which has the NULL check and the memory region request.
This code was detected with the help of Coccinelle.
Cc: stable@vger.kernel.org
Fixes: 97b7129cd2
("reset: hisilicon: change the definition of hisi_reset_init")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7ecf24877e
commit
e200279bb8
1 changed files with 2 additions and 3 deletions
|
@ -109,9 +109,8 @@ struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
rstc->membase = devm_ioremap(&pdev->dev,
|
rstc->membase = devm_ioremap_resource(&pdev->dev, res);
|
||||||
res->start, resource_size(res));
|
if (IS_ERR(rstc->membase))
|
||||||
if (!rstc->membase)
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
spin_lock_init(&rstc->lock);
|
spin_lock_init(&rstc->lock);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue