diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-02-10 03:29:48 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2021-02-11 02:45:48 +0000 |
commit | a3a66b6e6845da98c0a0768c7c4ef2e365068044 (patch) | |
tree | 7cb74f7a0b0775b67133b9860cc61497643a3a5f /src/soc/amd/cezanne/smihandler.c | |
parent | bc134812c3038b001d6b8a6c9fd30b1574e8517a (diff) |
soc/amd: move southbridge_smi_handler to common code
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I650498321736eee3d33af51216eda1b650f11744
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50463
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-by: Martin Roth <martinroth@google.com>
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.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/soc/amd/cezanne/smihandler.c b/src/soc/amd/cezanne/smihandler.c index 2d9e487984..b941293286 100644 --- a/src/soc/amd/cezanne/smihandler.c +++ b/src/soc/amd/cezanne/smihandler.c @@ -1,7 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ -#include <cpu/x86/smm.h> +#include <amdblocks/smm.h> -void southbridge_smi_handler(void) +void *get_smi_source_handler(int source) { + return NULL; } |