cxl/pci: Fix NULL vs ERR_PTR confusion
authorDan Williams <dan.j.williams@intel.com>
Fri, 15 Oct 2021 21:29:58 +0000 (14:29 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Nov 2021 18:16:04 +0000 (19:16 +0100)
commit39c5465c36394a6b7d41e53168cf8d323984ef48
tree1a50714f182cdb6e415c6cdd0ceda3d000beb670
parentafa7885b56e8d6b85d256594819b480a63a9eeb9
cxl/pci: Fix NULL vs ERR_PTR confusion

commit ca76a3a8052b71c0334d5c094859cfa340c290a8 upstream.

cxl_pci_map_regblock() may return an ERR_PTR(), but cxl_pci_setup_regs()
is only prepared for NULL as the error case. Pick the minimal fix for
-stable backport purposes and just have cxl_pci_map_regblock() return
NULL for errors.

Fixes: f8a7e8c29be8 ("cxl/pci: Reserve all device regions at once")
Cc: <stable@vger.kernel.org>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Link: https://lore.kernel.org/r/163433325724.834522.17809774578178224149.stgit@dwillia2-desk3.amr.corp.intel.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/cxl/pci.c