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>
This commit is contained in:
Родитель
c45757f0f2
Коммит
3a58101da2
|
@ -1319,6 +1319,11 @@ static int fb_probe(struct platform_device *device)
|
||||||
|
|
||||||
lcd_cfg = (struct lcd_ctrl_config *)fb_pdata->controller_data;
|
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),
|
da8xx_fb_info = framebuffer_alloc(sizeof(struct da8xx_fb_par),
|
||||||
&device->dev);
|
&device->dev);
|
||||||
if (!da8xx_fb_info) {
|
if (!da8xx_fb_info) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче