From 50cfd0a582e7686e95e10f4f3621e068a4e8dfca Mon Sep 17 00:00:00 2001 From: "Li Qiang (Johnny Li)" Date: Fri, 3 Sep 2021 19:20:50 -0700 Subject: [PATCH] cxl/pci: Fix debug message in cxl_probe_regs() commit da582aa5ad5787c46e3f475ab3f4602ec84c1617 upstream. Indicator string for mbox and memdev register set to status incorrectly in error message. Cc: Fixes: 30af97296f48 ("cxl/pci: Map registers based on capabilities") Signed-off-by: Li Qiang (Johnny Li) Reviewed-by: Jonathan Cameron Link: https://lore.kernel.org/r/163072205089.2250120.8103605864156687395.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Dan Williams Signed-off-by: Greg Kroah-Hartman --- drivers/cxl/pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/cxl/pci.c b/drivers/cxl/pci.c index 4cf351a3cf99..c446b30032a7 100644 --- a/drivers/cxl/pci.c +++ b/drivers/cxl/pci.c @@ -1022,8 +1022,8 @@ static int cxl_probe_regs(struct cxl_mem *cxlm, void __iomem *base, !dev_map->memdev.valid) { dev_err(dev, "registers not found: %s%s%s\n", !dev_map->status.valid ? "status " : "", - !dev_map->mbox.valid ? "status " : "", - !dev_map->memdev.valid ? "status " : ""); + !dev_map->mbox.valid ? "mbox " : "", + !dev_map->memdev.valid ? "memdev " : ""); return -ENXIO; } -- 2.43.0