Commit cf97ee19 authored by Markus Elfring's avatar Markus Elfring Committed by Jyri Sarha

drm/tilcdc: Return directly after a failed kfree_table_init() in tilcdc_convert_slave_node()

Return directly after a memory allocation failed in this function
at the beginning.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarJyri Sarha <jsarha@ti.com>
parent 34355ee0
......@@ -207,7 +207,7 @@ static void __init tilcdc_convert_slave_node(void)
int ret;
if (kfree_table_init(&kft))
goto out;
return;
lcdc = of_find_matching_node(NULL, tilcdc_of_match);
slave = of_find_matching_node(NULL, tilcdc_slave_of_match);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment