Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a58101d authored by Afzal Mohammed's avatar Afzal Mohammed Committed by Tomi Valkeinen
Browse files

video: da8xx-fb: ensure non-null cfg in pdata



Ensure that platform data contains pointer for lcd_ctrl_config.

Signed-off-by: default avatarAfzal Mohammed <afzal@ti.com>
Signed-off-by: default avatarDarren Etheridge <detheridge@ti.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent c45757f0
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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) {