Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50465 )
Change subject: soc/amd/cezanne/smihandler: add missing southbridge_io_trap_handler ......................................................................
soc/amd/cezanne/smihandler: add missing southbridge_io_trap_handler
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I4140fbf93e84a2620ffb88e5c65df17b23135553 --- M src/soc/amd/cezanne/smihandler.c 1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/50465/1
diff --git a/src/soc/amd/cezanne/smihandler.c b/src/soc/amd/cezanne/smihandler.c index b941293..46164e4 100644 --- a/src/soc/amd/cezanne/smihandler.c +++ b/src/soc/amd/cezanne/smihandler.c @@ -1,6 +1,12 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */
#include <amdblocks/smm.h> +#include <cpu/x86/smm.h> + +int southbridge_io_trap_handler(int smif) +{ + return 0; +}
void *get_smi_source_handler(int source) {