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

Commit e95a49b4 authored by Pawel Moll's avatar Pawel Moll Committed by Mike Turquette
Browse files

clk: vexpress: Use full node name to identify individual clocks



Previously all the clocks were reported as "osc". Now it will be
something like "/dcc/osc@0".

Signed-off-by: default avatarPawel Moll <pawel.moll@arm.com>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent 1c472d8e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ void __init vexpress_osc_of_setup(struct device_node *node)
	osc->func = vexpress_config_func_get_by_node(node);
	if (!osc->func) {
		pr_err("Failed to obtain config func for node '%s'!\n",
				node->name);
				node->full_name);
		goto error;
	}

@@ -119,7 +119,7 @@ void __init vexpress_osc_of_setup(struct device_node *node)

	of_property_read_string(node, "clock-output-names", &init.name);
	if (!init.name)
		init.name = node->name;
		init.name = node->full_name;

	init.ops = &vexpress_osc_ops;
	init.flags = CLK_IS_ROOT;