summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r--src/soc/intel/common/block/pcie/rtd3/chip.h2
-rw-r--r--src/soc/intel/common/block/pcie/rtd3/rtd3.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/common/block/pcie/rtd3/chip.h b/src/soc/intel/common/block/pcie/rtd3/chip.h
index 652aafffd776..8b624065586b 100644
--- a/src/soc/intel/common/block/pcie/rtd3/chip.h
+++ b/src/soc/intel/common/block/pcie/rtd3/chip.h
@@ -44,7 +44,7 @@ struct soc_intel_common_block_pcie_rtd3_config {
* Add device property indicating the device provides an external PCI port
* for the OS to apply security restrictions.
*/
- bool is_external;
+ bool add_acpi_external_facing_port;
/*
* Allow a device to add the RuntimeD3Storage property even if the detected
diff --git a/src/soc/intel/common/block/pcie/rtd3/rtd3.c b/src/soc/intel/common/block/pcie/rtd3/rtd3.c
index 7a64734b6e57..85ee24fbb50a 100644
--- a/src/soc/intel/common/block/pcie/rtd3/rtd3.c
+++ b/src/soc/intel/common/block/pcie/rtd3/rtd3.c
@@ -479,7 +479,7 @@ static void pcie_rtd3_acpi_fill_ssdt(const struct device *dev)
acpi_dp_add_package(dsd, pkg);
/* Indicate to the OS if the device provides an External facing port. */
- if (config->is_external) {
+ if (config->add_acpi_external_facing_port) {
pkg = acpi_dp_new_table(PCIE_EXTERNAL_PORT_UUID);
acpi_dp_add_integer(pkg, PCIE_EXTERNAL_PORT_PROPERTY, 1);
acpi_dp_add_package(dsd, pkg);