summaryrefslogtreecommitdiffstats
path: root/drivers/cxl
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2022-01-23 16:31:41 -0800
committerDan Williams <dan.j.williams@intel.com>2022-02-08 22:57:32 -0800
commit8aea0ef19fde030f983aba0e7ec5bcf10880a6fe (patch)
tree200a28223dfe24109eb3d95bbffbe2600c7789f4 /drivers/cxl
parent8dd2bc0f8e02d39bd80851ca787bcbdb7d495e69 (diff)
downloadlinux-8aea0ef19fde030f983aba0e7ec5bcf10880a6fe.tar.bz2
cxl/core: Move target_list out of base decoder attributes
In preparation for introducing endpoint decoder objects, move the target_list attribute out of the common set since it has no meaning for endpoint decoders. Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Ben Widawsky <ben.widawsky@intel.com> Link: https://lore.kernel.org/r/164298430100.3018233.4715072508880290970.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/cxl')
-rw-r--r--drivers/cxl/core/port.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/cxl/core/port.c b/drivers/cxl/core/port.c
index f460460b12b3..359d4303de9a 100644
--- a/drivers/cxl/core/port.c
+++ b/drivers/cxl/core/port.c
@@ -184,7 +184,6 @@ static struct attribute *cxl_decoder_base_attrs[] = {
&dev_attr_start.attr,
&dev_attr_size.attr,
&dev_attr_locked.attr,
- &dev_attr_target_list.attr,
NULL,
};
@@ -197,6 +196,7 @@ static struct attribute *cxl_decoder_root_attrs[] = {
&dev_attr_cap_ram.attr,
&dev_attr_cap_type2.attr,
&dev_attr_cap_type3.attr,
+ &dev_attr_target_list.attr,
NULL,
};
@@ -213,6 +213,7 @@ static const struct attribute_group *cxl_decoder_root_attribute_groups[] = {
static struct attribute *cxl_decoder_switch_attrs[] = {
&dev_attr_target_type.attr,
+ &dev_attr_target_list.attr,
NULL,
};