aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2015-06-18 15:15:10 +1000
committerMichael Ellerman <mpe@ellerman.id.au>2015-06-19 17:10:30 +1000
commitf293106917f6d1538c9c7779a632c2ab904a756b (patch)
treeec9cf9f1a0ffc3eb8a61f2623a8001df4baf1600 /drivers/misc
parentcxl: Add CXL_KERNEL_API config option (diff)
downloadlinux-dev-f293106917f6d1538c9c7779a632c2ab904a756b.tar.xz
linux-dev-f293106917f6d1538c9c7779a632c2ab904a756b.zip
cxl: Fix typo in debug print
Fix typo in debug print. p1_base() should be p2_base(). No change other than to the debug output. Signed-off-by: Michael Neuling <mikey@neuling.org> Acked-by: Ian Munsie <imunsie@au1.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/cxl/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
index 416905ed174c..c68ef5806dbe 100644
--- a/drivers/misc/cxl/pci.c
+++ b/drivers/misc/cxl/pci.c
@@ -205,7 +205,7 @@ static void dump_cxl_config_space(struct pci_dev *dev)
dev_info(&dev->dev, "p1 regs: %#llx, len: %#llx\n",
p1_base(dev), p1_size(dev));
dev_info(&dev->dev, "p2 regs: %#llx, len: %#llx\n",
- p1_base(dev), p2_size(dev));
+ p2_base(dev), p2_size(dev));
dev_info(&dev->dev, "BAR 4/5: %#llx, len: %#llx\n",
pci_resource_start(dev, 4), pci_resource_len(dev, 4));