diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-03-11 22:31:43 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-03-20 19:05:49 +0000 |
commit | c12ef5d7b77d4be76f43018458bfa184f182782e (patch) | |
tree | 04a1a9fcc76de8b8ef2fafd74947ee809a3c180e /src/vendorcode | |
parent | f7aafacb33de380f39d45936f02e0eea6e8ba5fc (diff) |
vc/amd/opensil/genoa_poc/mpio: add IFTYPE_ prefix to mpio_type values
Add an IFTYPE_ prefix to all elements of the mpio_type enum to have more
specific names.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I229a3402c36941ee5347e3704fcf8d8a1bbc78a6
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81338
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c | 4 | ||||
-rw-r--r-- | src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c b/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c index 50e96c99e9..61233a9a94 100644 --- a/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c +++ b/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c @@ -141,7 +141,7 @@ static void per_device_config(MPIOCLASS_INPUT_BLK *mpio_data, struct device *dev static int mpio_port = 0; MPIO_PORT_DESCRIPTOR port = { .Flags = DESCRIPTOR_TERMINATE_LIST }; - if (config->type == PCIE) { + if (config->type == IFTYPE_PCIE) { const MPIO_ENGINE_DATA engine_data = MPIO_ENGINE_DATA_INITIALIZER(MpioPcieEngine, config->start_lane, config->end_lane, @@ -160,7 +160,7 @@ static void per_device_config(MPIOCLASS_INPUT_BLK *mpio_data, struct device *dev config->aspm_l1_2, config->clock_pm); port.Port = port_data; - } else if (config->type == SATA) { + } else if (config->type == IFTYPE_SATA) { const MPIO_ENGINE_DATA engine_data = MPIO_ENGINE_DATA_INITIALIZER(MpioSATAEngine, config->start_lane, config->end_lane, diff --git a/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h b/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h index 64a8b3e010..deb40387d3 100644 --- a/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h +++ b/src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h @@ -17,8 +17,8 @@ */ enum mpio_type { - PCIE, - SATA, + IFTYPE_PCIE, + IFTYPE_SATA, }; /* Sync with PCIE_HOTPLUG_TYPE */ |