diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2017-09-27 13:26:23 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-10-02 22:26:05 +0000 |
commit | abac64d4d0200de000e0ebc417cfd29fe0e0a431 (patch) | |
tree | 3cb5c6d815ab9ed32665c957ffcf8f52505c9f75 | |
parent | e0459c78e461f2fa3ce9fc7924ccc47a5c2c66be (diff) | |
download | coreboot-abac64d4d0200de000e0ebc417cfd29fe0e0a431.tar.xz |
amd/stoneyridge: Add uart.c to smm-y list
This corrects a build error when a developer needs DEBUG_SMM and one
of the APU's internal UARTs is used.
Change-Id: Ie1962e969a8cb93eefc0b86bf4062752580e5acd
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/21740
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
-rw-r--r-- | src/soc/amd/stoneyridge/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/stoneyridge/Makefile.inc b/src/soc/amd/stoneyridge/Makefile.inc index e93a961602..930b7653b9 100644 --- a/src/soc/amd/stoneyridge/Makefile.inc +++ b/src/soc/amd/stoneyridge/Makefile.inc @@ -93,6 +93,7 @@ ramstage-y += tsc_freq.c smm-y += smihandler.c smm-y += smi_util.c smm-y += tsc_freq.c +smm-$(CONFIG_DEBUG_SMI) += uart.c CPPFLAGS_common += -I$(src)/soc/amd/stoneyridge CPPFLAGS_common += -I$(src)/soc/amd/stoneyridge/include |