summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/amd/common/block/data_fabric/domain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/common/block/data_fabric/domain.c b/src/soc/amd/common/block/data_fabric/domain.c
index 66ad8b3848..cfd4e0fe68 100644
--- a/src/soc/amd/common/block/data_fabric/domain.c
+++ b/src/soc/amd/common/block/data_fabric/domain.c
@@ -150,7 +150,7 @@ static void report_data_fabric_io(struct device *domain, unsigned int idx,
}
/* Tell the resource allocator about the usable I/O space */
-static void add_io_regions(struct device *domain, unsigned int *idx)
+static void add_data_fabric_io_regions(struct device *domain, unsigned int *idx)
{
/* TODO: Systems with more than one PCI root need to read the data fabric registers to
see which IO ranges get decoded to which PCI root. */
@@ -162,7 +162,7 @@ void amd_pci_domain_read_resources(struct device *domain)
{
unsigned int idx = 0;
- add_io_regions(domain, &idx);
+ add_data_fabric_io_regions(domain, &idx);
add_data_fabric_mmio_regions(domain, &idx);