Skip to content

Commit

Permalink
clk: vexpress: Use full node name to identify individual clocks
Browse files Browse the repository at this point in the history
Previously all the clocks were reported as "osc". Now it will be
something like "/dcc/osc@0".

Signed-off-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
  • Loading branch information
Pawel Moll authored and Mike Turquette committed Jun 20, 2013
1 parent 1c472d8 commit e95a49b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/clk/versatile/clk-vexpress-osc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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;
Expand Down

0 comments on commit e95a49b

Please sign in to comment.