diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-07-25 20:47:19 -0400 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-08-31 13:37:00 -0400 |
commit | e9a2310fb689151166df7fd9971093362d34bd79 (patch) | |
tree | 49ff5f885fc06ad2767f81985ba2be0d4acc765f | |
parent | 0b85de7cef013eeaf5cc873f0fd127ccfc2413be (diff) |
reset: hisilicon: fix potential NULL pointer dereference
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: 97b7129cd2af ("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>
-rw-r--r-- | drivers/clk/hisilicon/reset.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/clk/hisilicon/reset.c b/drivers/clk/hisilicon/reset.c index 2a5015c736ce..43e82fa64422 100644 --- a/drivers/clk/hisilicon/reset.c +++ b/drivers/clk/hisilicon/reset.c | |||
@@ -109,9 +109,8 @@ struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev) | |||
109 | return NULL; | 109 | return NULL; |
110 | 110 | ||
111 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 111 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
112 | rstc->membase = devm_ioremap(&pdev->dev, | 112 | rstc->membase = devm_ioremap_resource(&pdev->dev, res); |
113 | res->start, resource_size(res)); | 113 | if (IS_ERR(rstc->membase)) |
114 | if (!rstc->membase) | ||
115 | return NULL; | 114 | return NULL; |
116 | 115 | ||
117 | spin_lock_init(&rstc->lock); | 116 | spin_lock_init(&rstc->lock); |