Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1545584 > unrolled thread
| Started by | Arvind Yadav <arvind.yadav.cs@gmail.com> |
|---|---|
| First post | 2016-12-21 06:30 +0100 |
| Last post | 2016-12-21 06:30 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[v1] gpu: drm: sti: sti_vtac:- Handle return NULL error from devm_ioremap_nocache Arvind Yadav <arvind.yadav.cs@gmail.com> - 2016-12-21 06:30 +0100
| From | Arvind Yadav <arvind.yadav.cs@gmail.com> |
|---|---|
| Date | 2016-12-21 06:30 +0100 |
| Subject | [v1] gpu: drm: sti: sti_vtac:- Handle return NULL error from devm_ioremap_nocache |
| Message-ID | <sQHDs-7EN-9@gated-at.bofh.it> |
Here, If devm_ioremap_nocache will fail. It will return NULL.
Kernel can run into a NULL-pointer dereference. This error check
will avoid NULL pointer dereference.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
drivers/gpu/drm/sti/sti_vtac.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/sti/sti_vtac.c b/drivers/gpu/drm/sti/sti_vtac.c
index cf7fe8a..dd749e9 100644
--- a/drivers/gpu/drm/sti/sti_vtac.c
+++ b/drivers/gpu/drm/sti/sti_vtac.c
@@ -191,6 +191,10 @@ static int sti_vtac_probe(struct platform_device *pdev)
if (res) {
vtac->phy_regs = devm_ioremap_nocache(dev, res->start,
resource_size(res));
+ if (!vtac->phy_regs) {
+ DRM_ERROR("failed to remap I/O memory\n");
+ return -ENOMEM;
+ }
sti_vtac_tx_set_config(vtac);
} else {
--
1.7.9.5
Back to top | Article view | linux.kernel
csiph-web