diff options
author | Afzal Mohammed <afzal@ti.com> | 2013-08-05 18:02:34 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-08-09 07:02:43 -0400 |
commit | 3a58101da20b409984e608811bc2dd828f1e8c96 (patch) | |
tree | 098ab1c7aac8f13a946323c66b5ac0ae384cbd60 /drivers/video/da8xx-fb.c | |
parent | c45757f0f2c7655ae838e0f500c99794bdd6f33a (diff) |
video: da8xx-fb: ensure non-null cfg in pdata
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>
Diffstat (limited to 'drivers/video/da8xx-fb.c')
-rw-r--r-- | drivers/video/da8xx-fb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index c620a32e5ac9..dec27777a931 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c | |||
@@ -1319,6 +1319,11 @@ static int fb_probe(struct platform_device *device) | |||
1319 | 1319 | ||
1320 | lcd_cfg = (struct lcd_ctrl_config *)fb_pdata->controller_data; | 1320 | lcd_cfg = (struct lcd_ctrl_config *)fb_pdata->controller_data; |
1321 | 1321 | ||
1322 | if (!lcd_cfg) { | ||
1323 | ret = -EINVAL; | ||
1324 | goto err_pm_runtime_disable; | ||
1325 | } | ||
1326 | |||
1322 | da8xx_fb_info = framebuffer_alloc(sizeof(struct da8xx_fb_par), | 1327 | da8xx_fb_info = framebuffer_alloc(sizeof(struct da8xx_fb_par), |
1323 | &device->dev); | 1328 | &device->dev); |
1324 | if (!da8xx_fb_info) { | 1329 | if (!da8xx_fb_info) { |