mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
platform/chrome: cros_typec_switch: Add missing fwnode_handle_put()
[ Upstream commitdc70234c40] In cros_typec_register_switches(), we should add fwnode_handle_put() when break out of the iteration device_for_each_child_node() as it will automatically increase and decrease the refcounter. Fixes:affc804c44("platform/chrome: cros_typec_switch: Add switch driver") Signed-off-by: Liang He <windhl@126.com> Link: https://lore.kernel.org/r/20230322041657.1857001-1-windhl@126.com Signed-off-by: Prashant Malani <pmalani@chromium.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
aefea3016a
commit
830d79af9e
@@ -268,6 +268,7 @@ static int cros_typec_register_switches(struct cros_typec_switch_data *sdata)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
err_switch:
|
err_switch:
|
||||||
|
fwnode_handle_put(fwnode);
|
||||||
cros_typec_unregister_switches(sdata);
|
cros_typec_unregister_switches(sdata);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user