From d9c02cdc98ced2efb3299d0977b9f9c08793c0fd Mon Sep 17 00:00:00 2001 From: Felix Held Date: Thu, 1 Apr 2021 13:52:29 +0200 Subject: [PATCH] vc/amd/fsp/picasso/platform_descriptors: fix typos in enum element names Signed-off-by: Felix Held Change-Id: I5cad6a6a585320b33bfab7b3950888241f7c179c Reviewed-on: https://review.coreboot.org/c/coreboot/+/52028 Tested-by: build bot (Jenkins) Reviewed-by: Raul Rangel --- src/vendorcode/amd/fsp/picasso/platform_descriptors.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vendorcode/amd/fsp/picasso/platform_descriptors.h b/src/vendorcode/amd/fsp/picasso/platform_descriptors.h index 81293c647c..717be1fb1c 100644 --- a/src/vendorcode/amd/fsp/picasso/platform_descriptors.h +++ b/src/vendorcode/amd/fsp/picasso/platform_descriptors.h @@ -31,7 +31,7 @@ typedef enum { /* Upstream Auto Speed Change Allowed */ typedef enum { SPDC_DEFAULT = 0, // Enabled for Gen2 and Gen3 - SPDC_DISBLED, + SPDC_DISABLED, SPDC_ENABLED, SPDC_INVALID } dxio_upstream_auto_speed_change; @@ -105,7 +105,7 @@ typedef enum { EDP_TO_LVDS, // eDP-to-LVDS translator chip without AMD SW init EDP_TO_LVDS_SW, // eDP-to-LVDS translator which requires AMD SW init AUTO_DETECT, // VBIOS auto detect connector type - UNUSED_PTYPE, // UnusedType + UNUSED_TYPE, // UnusedType MAX_CONNECTOR_TYPE // Not valid value, used to verify input } ddi_connector_type;