Commit 36b67efe authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: sound: fix error path

Return error and exit the function in case registering the component
with the core is failing.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Link: https://lore.kernel.org/r/1592924855-25569-3-git-send-email-christian.gromm@microchip.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c0b122a0
......@@ -742,8 +742,10 @@ static int __init audio_init(void)
INIT_LIST_HEAD(&adpt_list);
ret = most_register_component(&comp);
if (ret)
if (ret) {
pr_err("Failed to register %s\n", comp.name);
return ret;
}
ret = most_register_configfs_subsys(&comp);
if (ret) {
pr_err("Failed to register %s configfs subsys\n", comp.name);
......
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