projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c45757f
)
video: da8xx-fb: ensure non-null cfg in pdata
author
Afzal Mohammed
<afzal@ti.com>
Mon, 5 Aug 2013 22:02:34 +0000
(17:02 -0500)
committer
Tomi Valkeinen
<tomi.valkeinen@ti.com>
Fri, 9 Aug 2013 11:02:43 +0000
(14:02 +0300)
Ensure that platform data contains pointer for lcd_ctrl_config.
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Darren Etheridge <detheridge@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/da8xx-fb.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/video/da8xx-fb.c
b/drivers/video/da8xx-fb.c
index c620a32e5ac9e8c6ee1438aff0e1a7c1e0185c32..dec27777a93158442db4349004799437722195a6 100644
(file)
--- a/
drivers/video/da8xx-fb.c
+++ b/
drivers/video/da8xx-fb.c
@@
-1319,6
+1319,11
@@
static int fb_probe(struct platform_device *device)
lcd_cfg = (struct lcd_ctrl_config *)fb_pdata->controller_data;
+ if (!lcd_cfg) {
+ ret = -EINVAL;
+ goto err_pm_runtime_disable;
+ }
+
da8xx_fb_info = framebuffer_alloc(sizeof(struct da8xx_fb_par),
&device->dev);
if (!da8xx_fb_info) {