summaryrefslogtreecommitdiff
path: root/src/soc/amd/cezanne/smihandler.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-02-09 23:43:17 +0100
committerMartin Roth <martinroth@google.com>2021-02-11 00:49:23 +0000
commitee2a3658727578721808620c526efa757f91aab0 (patch)
treeaa9b119098c95af2d738dbe90ad18fca231ce41c /src/soc/amd/cezanne/smihandler.c
parenta8d4a718e3a95dde5146e67790e15ca3f3b71cf7 (diff)
downloadcoreboot-ee2a3658727578721808620c526efa757f91aab0.tar.xz
soc/amd/cezanne: add empty SMM-handler
Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I95908fac3b1e17a16542e5d80001fac3d22d839a Reviewed-on: https://review.coreboot.org/c/coreboot/+/50455 Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/cezanne/smihandler.c')
-rw-r--r--src/soc/amd/cezanne/smihandler.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/smihandler.c b/src/soc/amd/cezanne/smihandler.c
new file mode 100644
index 0000000000..2d9e487984
--- /dev/null
+++ b/src/soc/amd/cezanne/smihandler.c
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <cpu/x86/smm.h>
+
+void southbridge_smi_handler(void)
+{
+}