summaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
authorPetr Mladek2019-05-06 10:33:10 +0200
committerPetr Mladek2019-05-06 10:33:10 +0200
commit0f46c78391e1348fe45af86a0cd52795726695af (patch)
treeee841bfa1178ce5be421c79bed73bb5e72b6d38e /arch/um
parentMerge branch 'for-5.2-vsprintf-hardening' into for-linus (diff)
parenttreewide: Switch printk users from %pf and %pF to %ps and %pS, respectively (diff)
downloadkernel-qcow2-linux-0f46c78391e1348fe45af86a0cd52795726695af.tar.gz
kernel-qcow2-linux-0f46c78391e1348fe45af86a0cd52795726695af.tar.xz
kernel-qcow2-linux-0f46c78391e1348fe45af86a0cd52795726695af.zip
Merge branch 'for-5.2-pf-removal' into for-linus
Diffstat (limited to 'arch/um')
-rw-r--r--arch/um/kernel/sysrq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/kernel/sysrq.c b/arch/um/kernel/sysrq.c
index 6b995e870d55..05585eef11d9 100644
--- a/arch/um/kernel/sysrq.c
+++ b/arch/um/kernel/sysrq.c
@@ -20,7 +20,7 @@
static void _print_addr(void *data, unsigned long address, int reliable)
{
- pr_info(" [<%08lx>] %s%pF\n", address, reliable ? "" : "? ",
+ pr_info(" [<%08lx>] %s%pS\n", address, reliable ? "" : "? ",
(void *)address);
}