diff options
author | 2018-10-24 09:16:14 +0100 | |
---|---|---|
committer | 2018-10-24 09:16:14 +0100 | |
commit | 4fa7393bda7b558f8ff546ebad51a445da86cd58 (patch) | |
tree | c6945edae5800daf6246e11c30a1a3fc1228c258 | |
parent | Merge branch 'topic/mv' into for-linus (diff) | |
parent | dmaengine: Convert to using %pOFn instead of device_node.name (diff) | |
download | linux-dev-4fa7393bda7b558f8ff546ebad51a445da86cd58.tar.xz linux-dev-4fa7393bda7b558f8ff546ebad51a445da86cd58.zip |
Merge branch 'topic/of' into for-linus
-rw-r--r-- | drivers/dma/nbpfaxi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/nbpfaxi.c b/drivers/dma/nbpfaxi.c index 8c7b2e8703da..8d4914cd06f0 100644 --- a/drivers/dma/nbpfaxi.c +++ b/drivers/dma/nbpfaxi.c @@ -1095,8 +1095,8 @@ static struct dma_chan *nbpf_of_xlate(struct of_phandle_args *dma_spec, if (!dchan) return NULL; - dev_dbg(dchan->device->dev, "Entry %s(%s)\n", __func__, - dma_spec->np->name); + dev_dbg(dchan->device->dev, "Entry %s(%pOFn)\n", __func__, + dma_spec->np); chan = nbpf_to_chan(dchan); |