projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d76201
)
drm/arm: mali-dp: Remove redundant dev_err call in malidp_bind()
author
Wei Yongjun
<weiyj.lk@gmail.com>
Thu, 28 Jul 2016 02:09:13 +0000
(
02:09
+0000)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Thu, 28 Jul 2016 10:59:12 +0000
(12:59 +0200)
There is a error message within devm_ioremap_resource
already, so remove the DRM_ERROR call to avoid redundant
error message.
Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Acked-by: Liviu Dudau <Liviu.Dudau@arm.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link:
http://patchwork.freedesktop.org/patch/msgid/1469671753-12961-1-git-send-email-weiyj.lk@gmail.com
drivers/gpu/drm/arm/malidp_drv.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/arm/malidp_drv.c
b/drivers/gpu/drm/arm/malidp_drv.c
index
4e61ea5
..
1160322
100644
(file)
--- a/
drivers/gpu/drm/arm/malidp_drv.c
+++ b/
drivers/gpu/drm/arm/malidp_drv.c
@@
-285,10
+285,8
@@
static int malidp_bind(struct device *dev)
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
hwdev->regs = devm_ioremap_resource(dev, res);
- if (IS_ERR(hwdev->regs)) {
- DRM_ERROR("Failed to map control registers area\n");
+ if (IS_ERR(hwdev->regs))
return PTR_ERR(hwdev->regs);
- }
hwdev->pclk = devm_clk_get(dev, "pclk");
if (IS_ERR(hwdev->pclk))