diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-03-19 17:53:39 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-03-20 19:05:38 +0000 |
commit | f7aafacb33de380f39d45936f02e0eea6e8ba5fc (patch) | |
tree | 48fdc0130ba312486b130c215b818caec815be79 /src/vendorcode | |
parent | b91f421118ff9c12955295bc88fc19ef09c4a019 (diff) |
vc/amd/opensil/stub/mpio: change mpio_engine_type prefix to IFTYPE
Change the prefix of the elements of the mpio_engine_type enum from
ENGINE_ to IFTYPE_.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Suggested-by: Matt DeVillier <matt.devillier@gmail.com>
Change-Id: If81c5ea01ba147b71b423004a2199b348ffac99a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81346
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Diffstat (limited to 'src/vendorcode')
-rw-r--r-- | src/vendorcode/amd/opensil/stub/mpio/chip.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vendorcode/amd/opensil/stub/mpio/chip.h b/src/vendorcode/amd/opensil/stub/mpio/chip.h index 53d22a0d07..f2fb5da6a9 100644 --- a/src/vendorcode/amd/opensil/stub/mpio/chip.h +++ b/src/vendorcode/amd/opensil/stub/mpio/chip.h @@ -3,8 +3,8 @@ #include <types.h> enum mpio_engine_type { - ENGINE_PCIE, - ENGINE_SATA, + IFTYPE_PCIE, + IFTYPE_SATA, }; /* Sync with PCIE_HOTPLUG_TYPE */ |