Commit 273c2cdb authored by Russell King's avatar Russell King Committed by Russell King

[ARM SMP] Fix a couple of warnings

Use *cpus_addr() to display the mask of pending/to be called CPUs.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 71f512e8
...@@ -315,8 +315,8 @@ int smp_call_function_on_cpu(void (*func)(void *info), void *info, int retry, ...@@ -315,8 +315,8 @@ int smp_call_function_on_cpu(void (*func)(void *info), void *info, int retry,
printk(KERN_CRIT printk(KERN_CRIT
"CPU%u: smp_call_function timeout for %p(%p)\n" "CPU%u: smp_call_function timeout for %p(%p)\n"
" callmap %lx pending %lx, %swait\n", " callmap %lx pending %lx, %swait\n",
smp_processor_id(), func, info, callmap, data.pending, smp_processor_id(), func, info, *cpus_addr(callmap),
wait ? "" : "no "); *cpus_addr(data.pending), wait ? "" : "no ");
/* /*
* TRACE * TRACE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment