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

Commit 43a51019 authored by Johan Hovold's avatar Johan Hovold Committed by Stephen Boyd
Browse files

clk: qcom: common: fix legacy board-clock registration



Make sure to search only the child nodes of "/clocks", rather than the
whole device-tree depth-first starting at "/clocks" when determining
whether to register a fixed clock in the legacy board-clock registration
helper.

Fixes: ee15faff ("clk: qcom: common: Add API to register board clocks backwards compatibly")
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 1d96ad64
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -133,8 +133,10 @@ static int _qcom_cc_register_board_clk(struct device *dev, const char *path,
	int ret;
	int ret;


	clocks_node = of_find_node_by_path("/clocks");
	clocks_node = of_find_node_by_path("/clocks");
	if (clocks_node)
	if (clocks_node) {
		node = of_find_node_by_name(clocks_node, path);
		node = of_get_child_by_name(clocks_node, path);
		of_node_put(clocks_node);
	}


	if (!node) {
	if (!node) {
		fixed = devm_kzalloc(dev, sizeof(*fixed), GFP_KERNEL);
		fixed = devm_kzalloc(dev, sizeof(*fixed), GFP_KERNEL);