aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2017-10-09 12:54:14 -0400
committerSantosh Shilimkar <ssantosh@kernel.org>2017-10-09 12:54:14 -0400
commit595f3a9de5815d38198136491fa50a8ee1700b7d (patch)
tree37075444bd1814ecc5a3572e66f53d1b966674ba
parente19b205be43d11bff638cad4487008c48d21c103 (diff)
ti_sci: Use %pS printk format for direct addresses
Use the %pS printk format for printing symbols from direct addresses. This is important for the ia64, ppc64 and parisc64 architectures, while on other architectures there is no difference between %pS and %pF. Fix it for consistency across the kernel. Signed-off-by: Helge Deller <deller@gmx.de> Acked-by: Nishanth Menon <nm@ti.com> Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
-rw-r--r--drivers/firmware/ti_sci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c
index 00cfed3c3e1a..23b12d99ddfe 100644
--- a/drivers/firmware/ti_sci.c
+++ b/drivers/firmware/ti_sci.c
@@ -439,7 +439,7 @@ static inline int ti_sci_do_xfer(struct ti_sci_info *info,
439 /* And we wait for the response. */ 439 /* And we wait for the response. */
440 timeout = msecs_to_jiffies(info->desc->max_rx_timeout_ms); 440 timeout = msecs_to_jiffies(info->desc->max_rx_timeout_ms);
441 if (!wait_for_completion_timeout(&xfer->done, timeout)) { 441 if (!wait_for_completion_timeout(&xfer->done, timeout)) {
442 dev_err(dev, "Mbox timedout in resp(caller: %pF)\n", 442 dev_err(dev, "Mbox timedout in resp(caller: %pS)\n",
443 (void *)_RET_IP_); 443 (void *)_RET_IP_);
444 ret = -ETIMEDOUT; 444 ret = -ETIMEDOUT;
445 } 445 }