ntb_tool: Fix printk format

The correct printk format is %pa or %pap, but not %pa[p].

Fixes: 7f46c8b3a5 ("NTB: ntb_tool: Add full multi-port NTB API support")
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
This commit is contained in:
Helge Deller 2020-01-14 20:22:47 +01:00 committed by Jon Mason
parent 99a0605612
commit 2ef97a6c18

View file

@ -678,19 +678,19 @@ static ssize_t tool_mw_trans_read(struct file *filep, char __user *ubuf,
&inmw->dma_base); &inmw->dma_base);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Window Size \t%pa[p]\n", "Window Size \t%pap\n",
&inmw->size); &inmw->size);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Alignment \t%pa[p]\n", "Alignment \t%pap\n",
&addr_align); &addr_align);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Size Alignment \t%pa[p]\n", "Size Alignment \t%pap\n",
&size_align); &size_align);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Size Max \t%pa[p]\n", "Size Max \t%pap\n",
&size_max); &size_max);
ret = simple_read_from_buffer(ubuf, size, offp, buf, off); ret = simple_read_from_buffer(ubuf, size, offp, buf, off);
@ -907,16 +907,16 @@ static ssize_t tool_peer_mw_trans_read(struct file *filep, char __user *ubuf,
"Virtual address \t0x%pK\n", outmw->io_base); "Virtual address \t0x%pK\n", outmw->io_base);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Phys Address \t%pa[p]\n", &map_base); "Phys Address \t%pap\n", &map_base);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Mapping Size \t%pa[p]\n", &map_size); "Mapping Size \t%pap\n", &map_size);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Translation Address \t0x%016llx\n", outmw->tr_base); "Translation Address \t0x%016llx\n", outmw->tr_base);
off += scnprintf(buf + off, buf_size - off, off += scnprintf(buf + off, buf_size - off,
"Window Size \t%pa[p]\n", &outmw->size); "Window Size \t%pap\n", &outmw->size);
ret = simple_read_from_buffer(ubuf, size, offp, buf, off); ret = simple_read_from_buffer(ubuf, size, offp, buf, off);
kfree(buf); kfree(buf);