summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-07-04 21:22:25 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-04 20:39:10 +0000
commit54be395a9bfab6871ed997b331affdc2a3d5c646 (patch)
tree1ccbe5cd48a28b6ea0a903e6687f4e8d55dc012b /src/include
parente5f25cee1cf84458a15da62375e14abeb423945c (diff)
downloadcoreboot-54be395a9bfab6871ed997b331affdc2a3d5c646.tar.xz
smbios: TYPE_NONE and TYPE_OTHER are already taken
Change-Id: Ic66f7c919a71cb53773d5056e5f756cd6faf4909 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43135 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/smbios.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/smbios.h b/src/include/smbios.h
index 8283a4c73c..ed09d642b9 100644
--- a/src/include/smbios.h
+++ b/src/include/smbios.h
@@ -540,7 +540,7 @@ typedef enum {
/* enum for port types */
typedef enum {
- TYPE_NONE = 0x00,
+ TYPE_NONE_PORT = 0x00,
TYPE_PARALLEL_PORT_XT_AT_COMPATIBLE = 0x01,
TYPE_PARALLEL_PORT_PS_2 = 0x02,
TYPE_PARALLEL_PORT_ECP = 0x03,
@@ -578,7 +578,7 @@ typedef enum {
TYPE_THUNDERBOLT = 0x23,
TYPE_8251_COMPATIBLE = 0xA0,
TYPE_8251_FIFO_COMPATIBLE = 0xA1,
- TYPE_OTHER = 0xFF,
+ TYPE_OTHER_PORT = 0xFF,
} type8_port_types;
struct port_information {