diff options
author | Rob Herring <robh@kernel.org> | 2017-07-19 00:42:43 +0300 |
---|---|---|
committer | Mark Salter <msalter@redhat.com> | 2017-08-24 16:35:40 +0300 |
commit | 636d42117800db1a994726fcf017e3633db832a5 (patch) | |
tree | e607fe7bb3aa6d3ef24c2b24a9d2f609be0f40a9 /arch/c6x/platforms/plldata.c | |
parent | 98cd249cf9d2c7e2322fbf20c454c019e141a28b (diff) | |
download | linux-636d42117800db1a994726fcf017e3633db832a5.tar.xz |
c6x: Convert to using %pOF instead of full_name
Now that we have a custom printf format specifier, convert users of
full_name to use %pOF instead. This is preparation to remove storing
of the full path string for each node.
Signed-off-by: Rob Herring <robh@kernel.org>
Cc: Mark Salter <msalter@redhat.com>
Cc: Aurelien Jacquiot <a-jacquiot@ti.com>
Cc: linux-c6x-dev@linux-c6x.org
Signed-off-by: Mark Salter <msalter@redhat.com>
Diffstat (limited to 'arch/c6x/platforms/plldata.c')
-rw-r--r-- | arch/c6x/platforms/plldata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/c6x/platforms/plldata.c b/arch/c6x/platforms/plldata.c index 755359eb6286..e8b6cc6a7b5a 100644 --- a/arch/c6x/platforms/plldata.c +++ b/arch/c6x/platforms/plldata.c @@ -436,8 +436,8 @@ void __init c64x_setup_clocks(void) err = of_property_read_u32(node, "clock-frequency", &val); if (err || val == 0) { - pr_err("%s: no clock-frequency found! Using %dMHz\n", - node->full_name, (int)val / 1000000); + pr_err("%pOF: no clock-frequency found! Using %dMHz\n", + node, (int)val / 1000000); val = 25000000; } clkin1.rate = val; |