diff options
author | Ira Weiny <ira.weiny@intel.com> | 2023-08-28 22:20:52 -0700 |
---|---|---|
committer | Dave Jiang <dave.jiang@intel.com> | 2024-04-30 10:43:48 -0700 |
commit | 6ef37af6f465127d7a81d7d2efa228f91d725bf8 (patch) | |
tree | f12f5f46b98f6dbf8a5bc6171bf5e069564a3460 /drivers/cxl/core | |
parent | 4cce9c6d4bde821c21f7bd75c26f1e98a00d3858 (diff) |
cxl/hdm: Debug, use decoder name function
The decoder enum has a name conversion function defined now.
Use that instead of open coding.
Suggested-by: Navneet Singh <navneet.singh@intel.com>
Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Fan Ni <fan.ni@samsung.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Link: https://lore.kernel.org/r/20230604-dcd-type2-upstream-v2-1-f740c47e7916@intel.com
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Diffstat (limited to 'drivers/cxl/core')
-rw-r--r-- | drivers/cxl/core/hdm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c index 4b4c1bd47712..784843fa2a22 100644 --- a/drivers/cxl/core/hdm.c +++ b/drivers/cxl/core/hdm.c @@ -519,8 +519,7 @@ int cxl_dpa_alloc(struct cxl_endpoint_decoder *cxled, unsigned long long size) if (size > avail) { dev_dbg(dev, "%pa exceeds available %s capacity: %pa\n", &size, - cxled->mode == CXL_DECODER_RAM ? "ram" : "pmem", - &avail); + cxl_decoder_mode_name(cxled->mode), &avail); rc = -ENOSPC; goto out; } |