diff options
author | Dan Williams <dan.j.williams@intel.com> | 2022-05-19 03:55:13 +0300 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2022-07-10 02:22:41 +0300 |
commit | e8b7ea58abbd2335734e67cccbd992e4735366bd (patch) | |
tree | 38b9055fa6dd884db5b06c56a4374316830672ab /tools/testing/cxl | |
parent | 04ed37a2baf957620970b4049b0390089da5ec17 (diff) | |
download | linux-e8b7ea58abbd2335734e67cccbd992e4735366bd.tar.xz |
cxl/core: Rename ->decoder_range ->hpa_range
In preparation for growing a ->dpa_range attribute for endpoint
decoders, rename the current ->decoder_range to the more descriptive
->hpa_range.
Reviewed-by: Alison Schofield <alison.schofield@intel.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Adam Manzanares <a.manzanares@samsung.com>
Link: https://lore.kernel.org/r/165603872867.551046.2170426227407458814.stgit@dwillia2-xfh
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'tools/testing/cxl')
-rw-r--r-- | tools/testing/cxl/test/cxl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/cxl/test/cxl.c b/tools/testing/cxl/test/cxl.c index 431f2bddf6c8..7a08b025f2de 100644 --- a/tools/testing/cxl/test/cxl.c +++ b/tools/testing/cxl/test/cxl.c @@ -461,7 +461,7 @@ static int mock_cxl_enumerate_decoders(struct cxl_hdm *cxlhdm) return PTR_ERR(cxld); } - cxld->decoder_range = (struct range) { + cxld->hpa_range = (struct range) { .start = 0, .end = -1, }; |