Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74860 )
Change subject: mb/google/jecht: Clean smihandler ......................................................................
mb/google/jecht: Clean smihandler
Change-Id: I47ec05aa87e4e7c02b19817b2f703eca492008e6 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/mainboard/google/jecht/smihandler.c 1 file changed, 10 insertions(+), 12 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/74860/1
diff --git a/src/mainboard/google/jecht/smihandler.c b/src/mainboard/google/jecht/smihandler.c index a4feeb4..54666da 100644 --- a/src/mainboard/google/jecht/smihandler.c +++ b/src/mainboard/google/jecht/smihandler.c @@ -4,7 +4,6 @@ #include <console/console.h> #include <cpu/x86/smm.h> #include <soc/pm.h> -#include <ec/google/chromeec/ec.h> #include <southbridge/intel/lynxpoint/lp_gpio.h> #include <soc/iomap.h> #include "onboard.h" @@ -31,14 +30,3 @@ break; } } - -int mainboard_smi_apmc(u8 apmc) -{ - switch (apmc) { - case APM_CNT_ACPI_ENABLE: - break; - case APM_CNT_ACPI_DISABLE: - break; - } - return 0; -}