]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mailbox: Convert to using %pOFn instead of device_node.name
authorRob Herring <robh@kernel.org>
Tue, 28 Aug 2018 01:52:28 +0000 (20:52 -0500)
committerJassi Brar <jaswinder.singh@linaro.org>
Sat, 29 Sep 2018 07:12:38 +0000 (12:42 +0530)
In preparation to remove the node name pointer from struct device_node,
convert printf users to use the %pOFn format specifier.

Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
drivers/mailbox/ti-msgmgr.c

index 5bceafbf66993f266de4df2ddf574c9c19bfdca9..713d701b656892d2f9fe5d7008f30808d21936c8 100644 (file)
@@ -560,8 +560,8 @@ static struct mbox_chan *ti_msgmgr_of_xlate(struct mbox_controller *mbox,
        }
 
 err:
-       dev_err(inst->dev, "Queue ID %d, Proxy ID %d is wrong on %s\n",
-               req_qid, req_pid, p->np->name);
+       dev_err(inst->dev, "Queue ID %d, Proxy ID %d is wrong on %pOFn\n",
+               req_qid, req_pid, p->np);
        return ERR_PTR(-ENOENT);
 }