diff options
author | Martin Roth <gaumless@gmail.com> | 2023-08-24 17:19:03 -0600 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-08-26 21:14:45 +0000 |
commit | 09202cce26fdd2796688ae6bf5b746ecaf2b07d2 (patch) | |
tree | 789ef27fd90579d93bc06a9061b9089208bb4868 /src/vendorcode/intel | |
parent | 8b703954c352329486d3610121ae41de896da565 (diff) |
vc/intel: Remove unnecessary Kconfig options
These Kconfig options were being used basically as #define statements,
which is unnecessary. This isn't a good use of Kconfig options and would
be better just as #defines if actually needed.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: If987b50d8ec3bb2ab99096e5e3c325e4d90a67a9
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77419
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/vendorcode/intel')
-rw-r--r-- | src/vendorcode/intel/Kconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vendorcode/intel/Kconfig b/src/vendorcode/intel/Kconfig index 8af7eb84b2..595a1c61c8 100644 --- a/src/vendorcode/intel/Kconfig +++ b/src/vendorcode/intel/Kconfig @@ -38,10 +38,10 @@ config UDK_202302_VERSION config UDK_VERSION int - default UDK_202302_VERSION if UDK_202302_BINDING - default UDK_202005_VERSION if UDK_202005_BINDING - default UDK_2017_VERSION if UDK_2017_BINDING - default UDK_2013_VERSION + default 202302 if UDK_202302_BINDING + default 202005 if UDK_202005_BINDING + default 2017 if UDK_2017_BINDING + default 2013 help UEFI Development Kit version for Platform endif # UDK_BASE |