diff options
author | Rob Herring <robh@kernel.org> | 2017-08-08 01:29:18 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-08-08 12:36:54 +0200 |
commit | 06d15a2ede999a77f0d05aa600ed473d90d9a909 (patch) | |
tree | 728f4c36a02f893062905f376888857cde28f9af /sound/soc/fsl/fsl_dma.c | |
parent | ASoC: fsl_asrc: constify snd_soc_dai_ops structure (diff) | |
download | linux-06d15a2ede999a77f0d05aa600ed473d90d9a909.tar.xz linux-06d15a2ede999a77f0d05aa600ed473d90d9a909.zip |
ASoC: fsl: 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>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/fsl_dma.c')
-rw-r--r-- | sound/soc/fsl/fsl_dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/fsl_dma.c b/sound/soc/fsl/fsl_dma.c index ccadefceeff2..ed8ea002902d 100644 --- a/sound/soc/fsl/fsl_dma.c +++ b/sound/soc/fsl/fsl_dma.c @@ -897,8 +897,8 @@ static int fsl_soc_dma_probe(struct platform_device *pdev) ret = of_address_to_resource(ssi_np, 0, &res); if (ret) { - dev_err(&pdev->dev, "could not determine resources for %s\n", - ssi_np->full_name); + dev_err(&pdev->dev, "could not determine resources for %pOF\n", + ssi_np); of_node_put(ssi_np); return ret; } |