diff options
author | Benjamin Doron <benjamin.doron00@gmail.com> | 2021-03-05 20:47:56 +0000 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-15 06:27:30 +0000 |
commit | 234f8e040580d85589317e18b8b030d125b81891 (patch) | |
tree | 45c7c05c7927fff03cde8a6218054af0ee976605 /src/security/intel | |
parent | 172d2d140daefcca50b39c8b064d9211046c9651 (diff) |
security/intel/stm/Makefile.inc: Fix typo
In both the Kconfig and Makefile in this directory,
"STM_TTYS0_BASE" is used. Therefore, fix the typo.
Change-Id: Ie83ec31c7bb0f6805c0225ee7405e137a666a5d3
Signed-off-by: Benjamin Doron <benjamin.doron00@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51206
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Eugene Myers <cedarhouse1@comcast.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/security/intel')
-rw-r--r-- | src/security/intel/stm/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/intel/stm/Makefile.inc b/src/security/intel/stm/Makefile.inc index 3f5b9ee5c6..d4da605bd7 100644 --- a/src/security/intel/stm/Makefile.inc +++ b/src/security/intel/stm/Makefile.inc @@ -11,7 +11,7 @@ ramstage-$(CONFIG_STM) += StmPlatformResource.c 3rdparty/stm/Stm/build/StmPkg/Core/stm.bin: $(obj)/config.h $(MAKE) -C src/security/intel/stm \ - CONFIG_STM_TTYSO_BASE=$(CONFIG_STM_TTYSO_BASE) \ + CONFIG_STM_TTYS0_BASE=$(CONFIG_STM_TTYS0_BASE) \ CONFIG_STM_HEAPSIZE=$(CONFIG_STM_HEAPSIZE) \ CONFIG_STM_CONSOLE_DEBUG=$(CONFIG_STM_CONSOLE_DEBUG) \ CONFIG_STM_CONSOLE_RELEASE=$(CONFIG_STM_CONSOLE_RELEASE) \ |