clk: vexpress: Use full node name to identify individual clocks
authorPawel Moll <pawel.moll@arm.com>
Mon, 10 Jun 2013 15:05:06 +0000 (16:05 +0100)
committerMike Turquette <mturquette@linaro.org>
Thu, 20 Jun 2013 07:02:18 +0000 (00:02 -0700)
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>
drivers/clk/versatile/clk-vexpress-osc.c

index 256c8be..2dc8b41 100644 (file)
@@ -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;