mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 01:41:30 +07:00
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:
parent
c45757f0f2
commit
3a58101da2
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user