File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -619,7 +619,6 @@ static int devm_cxl_link_parent_dport(struct device *host,
619
619
static struct lock_class_key cxl_port_key ;
620
620
621
621
static struct cxl_port * cxl_port_alloc (struct device * uport_dev ,
622
- resource_size_t component_reg_phys ,
623
622
struct cxl_dport * parent_dport )
624
623
{
625
624
struct cxl_port * port ;
@@ -670,7 +669,6 @@ static struct cxl_port *cxl_port_alloc(struct device *uport_dev,
670
669
} else
671
670
dev -> parent = uport_dev ;
672
671
673
- port -> component_reg_phys = component_reg_phys ;
674
672
ida_init (& port -> decoder_ida );
675
673
port -> hdm_end = -1 ;
676
674
port -> commit_end = -1 ;
@@ -746,7 +744,7 @@ static struct cxl_port *__devm_cxl_add_port(struct device *host,
746
744
struct device * dev ;
747
745
int rc ;
748
746
749
- port = cxl_port_alloc (uport_dev , component_reg_phys , parent_dport );
747
+ port = cxl_port_alloc (uport_dev , parent_dport );
750
748
if (IS_ERR (port ))
751
749
return port ;
752
750
Original file line number Diff line number Diff line change @@ -576,7 +576,6 @@ struct cxl_dax_region {
576
576
* @nr_dports: number of entries in @dports
577
577
* @hdm_end: track last allocated HDM decoder instance for allocation ordering
578
578
* @commit_end: cursor to track highest committed decoder for commit ordering
579
- * @component_reg_phys: component register capability base address (optional)
580
579
* @dead: last ep has been removed, force port re-creation
581
580
* @depth: How deep this port is relative to the root. depth 0 is the root.
582
581
* @cdat: Cached CDAT data
@@ -596,7 +595,6 @@ struct cxl_port {
596
595
int nr_dports ;
597
596
int hdm_end ;
598
597
int commit_end ;
599
- resource_size_t component_reg_phys ;
600
598
bool dead ;
601
599
unsigned int depth ;
602
600
struct cxl_cdat {
You can’t perform that action at this time.
0 commit comments