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>
This commit is contained in:
@ -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,
|
||||
|
@ -17,8 +17,8 @@
|
||||
*/
|
||||
|
||||
enum mpio_type {
|
||||
PCIE,
|
||||
SATA,
|
||||
IFTYPE_PCIE,
|
||||
IFTYPE_SATA,
|
||||
};
|
||||
|
||||
/* Sync with PCIE_HOTPLUG_TYPE */
|
||||
|
Reference in New Issue
Block a user