diff options
author | Abner Chang <abner.chang@amd.com> | 2024-05-01 17:13:23 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-05-08 04:43:58 +0000 |
commit | fa7fdb89a3c55a5ea1c346b5ac43cae567c210ca (patch) | |
tree | bcfc6ef7d448a6f55378eaaf9d19ea63091d9ddd | |
parent | 2727231b0a6fb4c043479d132df4d36cf9f751c2 (diff) | |
download | edk2-fa7fdb89a3c55a5ea1c346b5ac43cae567c210ca.tar.gz edk2-fa7fdb89a3c55a5ea1c346b5ac43cae567c210ca.tar.bz2 edk2-fa7fdb89a3c55a5ea1c346b5ac43cae567c210ca.zip |
MdePkg/SpiConfiguration: Correct the definition spelling
Cc: Abner Chang <abner.chang@amd.com>
Cc: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
Signed-off-by: Brit Chesley <brit.chesley@amd.com>
Reviewed-by: Abner Chang <abner.chang@amd.com>
-rw-r--r-- | MdePkg/Include/Protocol/SpiConfiguration.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/SpiConfiguration.h b/MdePkg/Include/Protocol/SpiConfiguration.h index 120b54bbad..cd7c1dd71e 100644 --- a/MdePkg/Include/Protocol/SpiConfiguration.h +++ b/MdePkg/Include/Protocol/SpiConfiguration.h @@ -173,8 +173,8 @@ typedef struct _EFI_SPI_BUS { /// Definitions of SPI Part Attributes.
///
#define SPI_PART_SUPPORTS_2_BIT_DATA_BUS_WIDTH BIT0
-#define SPI_PART_SUPPORTS_4_B1T_DATA_BUS_WIDTH BIT1
-#define SPI_PART_SUPPORTS_8_B1T_DATA_BUS_WIDTH BIT2
+#define SPI_PART_SUPPORTS_4_BIT_DATA_BUS_WIDTH BIT1
+#define SPI_PART_SUPPORTS_8_BIT_DATA_BUS_WIDTH BIT2
///
/// The EFI_SPI_PERIPHERAL data structure describes how a specific block of
|