diff options
| author | Rob Herring <[email protected]> | 2017-07-18 21:43:31 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2017-07-19 10:56:23 +0000 |
| commit | 25c56c88a4627e7fdbfa12a4c20c75e2ccb366d1 (patch) | |
| tree | 4595a0bcaaf192ceeef30242938007c7d9c4bbc2 /drivers/spi/spi-orion.c | |
| parent | Linux v4.13-rc1 (diff) | |
| download | kernel-25c56c88a4627e7fdbfa12a4c20c75e2ccb366d1.tar.gz kernel-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 <[email protected]>
Reviewed-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Diffstat (limited to 'drivers/spi/spi-orion.c')
| -rw-r--r-- | drivers/spi/spi-orion.c | 4 |
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; } |
