summaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-orion.c
diff options
context:
space:
mode:
authorRob Herring2017-07-18 23:43:31 +0200
committerMark Brown2017-07-19 12:56:23 +0200
commit25c56c88a4627e7fdbfa12a4c20c75e2ccb366d1 (patch)
tree4595a0bcaaf192ceeef30242938007c7d9c4bbc2 /drivers/spi/spi-orion.c
parentLinux v4.13-rc1 (diff)
downloadkernel-qcow2-linux-25c56c88a4627e7fdbfa12a4c20c75e2ccb366d1.tar.gz
kernel-qcow2-linux-25c56c88a4627e7fdbfa12a4c20c75e2ccb366d1.tar.xz
kernel-qcow2-linux-25c56c88a4627e7fdbfa12a4c20c75e2ccb366d1.zip
spi: 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> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-orion.c')
-rw-r--r--drivers/spi/spi-orion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c
index 28fc9f161b9d..4b6dd73b80da 100644
--- a/drivers/spi/spi-orion.c
+++ b/drivers/spi/spi-orion.c
@@ -669,8 +669,8 @@ static int orion_spi_probe(struct platform_device *pdev)
status = of_property_read_u32(np, "reg", &cs);
if (status) {
dev_err(&pdev->dev,
- "%s has no valid 'reg' property (%d)\n",
- np->full_name, status);
+ "%pOF has no valid 'reg' property (%d)\n",
+ np, status);
status = 0;
continue;
}