diff options
| author | Rob Herring <[email protected]> | 2017-08-21 15:16:47 +0000 |
|---|---|---|
| committer | Michael Ellerman <[email protected]> | 2017-08-23 12:27:04 +0000 |
| commit | b7c670d673d1186e9a6aafaad36aace34046bb6b (patch) | |
| tree | 47d5bf2982492caa7f4570107e800d2bf085073b /arch/powerpc/sysdev/xive/native.c | |
| parent | powerpc/vio: Use device_type to detect family (diff) | |
| download | kernel-b7c670d673d1186e9a6aafaad36aace34046bb6b.tar.gz kernel-b7c670d673d1186e9a6aafaad36aace34046bb6b.zip | |
powerpc: 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 <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Michael Ellerman <[email protected]>
Cc: Anatolij Gustschin <[email protected]>
Cc: Scott Wood <[email protected]>
Cc: Kumar Gala <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: [email protected]
Reviewed-by: Tyrel Datwyler <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Diffstat (limited to 'arch/powerpc/sysdev/xive/native.c')
| -rw-r--r-- | arch/powerpc/sysdev/xive/native.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/xive/native.c b/arch/powerpc/sysdev/xive/native.c index 1dbf782c9239..edc2e81b7280 100644 --- a/arch/powerpc/sysdev/xive/native.c +++ b/arch/powerpc/sysdev/xive/native.c @@ -551,7 +551,7 @@ bool __init xive_native_init(void) pr_devel("not found !\n"); return false; } - pr_devel("Found %s\n", np->full_name); + pr_devel("Found %pOF\n", np); /* Resource 1 is HV window */ if (of_address_to_resource(np, 1, &r)) { |
