diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2017-09-27 13:32:00 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-09-30 20:32:48 +0000 |
commit | 6746d3784fb0c1c79c71b3f1c24a2bf59f75a2d0 (patch) | |
tree | ca853d8cc0a6d7e3853a27134d2f5d755804365f /src | |
parent | b639bef83644a13ae8864095c8635c722bd37754 (diff) |
amd/stoneyridge: Remove HAVE_SMI_HANDLER from makefile
Stoney Ridge always now selects HAVE_SMI_HANDLER so it is pointless
to use the variable in Makefile.inc. Make all files built into smm
unconditional.
Change-Id: I4ea89d7bce83a99328c58897a4098debacd86d66
Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-on: https://review.coreboot.org/21739
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/stoneyridge/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/stoneyridge/Makefile.inc b/src/soc/amd/stoneyridge/Makefile.inc index 0fd318bfa6..e93a961602 100644 --- a/src/soc/amd/stoneyridge/Makefile.inc +++ b/src/soc/amd/stoneyridge/Makefile.inc @@ -90,9 +90,9 @@ ramstage-$(CONFIG_STONEYRIDGE_UART) += uart.c ramstage-y += usb.c ramstage-y += tsc_freq.c -smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c -smm-$(CONFIG_HAVE_SMI_HANDLER) += smi_util.c -smm-$(CONFIG_HAVE_SMI_HANDLER) += tsc_freq.c +smm-y += smihandler.c +smm-y += smi_util.c +smm-y += tsc_freq.c CPPFLAGS_common += -I$(src)/soc/amd/stoneyridge CPPFLAGS_common += -I$(src)/soc/amd/stoneyridge/include |