diff options
author | Ben Widawsky <ben.widawsky@intel.com> | 2022-03-04 13:36:45 -0800 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2022-06-21 14:09:00 -0700 |
commit | 8ae3cebc1704b9a3ab8398dc7820c37183026bbc (patch) | |
tree | 0e3958d481271d01bcaf085ffd5c3c83f14aa5ad /drivers/cxl/core/hdm.c | |
parent | db9a3a35d31ea337331f0e6e07e04bcd52642894 (diff) | |
download | linux-8ae3cebc1704b9a3ab8398dc7820c37183026bbc.tar.bz2 |
cxl/core: Use is_endpoint_decoder
Save some characters and directly check decoder type rather than port
type. There's no need to check if the port is an endpoint port since, by
this point, cxl_endpoint_decoder_alloc() has a specified type.
Reviewed by: Adam Manzanares <a.manzanares@samsung.com>
Signed-off-by: Ben Widawsky <ben.widawsky@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/cxl/core/hdm.c')
-rw-r--r-- | drivers/cxl/core/hdm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c index 0e89a7a932d4..bfc8ee876278 100644 --- a/drivers/cxl/core/hdm.c +++ b/drivers/cxl/core/hdm.c @@ -197,7 +197,7 @@ static int init_hdm_decoder(struct cxl_port *port, struct cxl_decoder *cxld, else cxld->target_type = CXL_DECODER_ACCELERATOR; - if (is_cxl_endpoint(to_cxl_port(cxld->dev.parent))) + if (is_endpoint_decoder(&cxld->dev)) return 0; target_list.value = |