From c12ef5d7b77d4be76f43018458bfa184f182782e Mon Sep 17 00:00:00 2001 From: Felix Held Date: Mon, 11 Mar 2024 22:31:43 +0100 Subject: 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 Change-Id: I229a3402c36941ee5347e3704fcf8d8a1bbc78a6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/81338 Reviewed-by: Martin L Roth Tested-by: build bot (Jenkins) --- src/vendorcode/amd/opensil/genoa_poc/mpio/chip.c | 4 ++-- src/vendorcode/amd/opensil/genoa_poc/mpio/chip.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/vendorcode/amd') 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 */ -- cgit v1.2.3