diff options
Diffstat (limited to 'src/mainboard/google/glados/smihandler.c')
-rw-r--r-- | src/mainboard/google/glados/smihandler.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/mainboard/google/glados/smihandler.c b/src/mainboard/google/glados/smihandler.c index 882aff6da9..b1adb866d9 100644 --- a/src/mainboard/google/glados/smihandler.c +++ b/src/mainboard/google/glados/smihandler.c @@ -6,32 +6,11 @@ #include <ec/google/chromeec/smm.h> #include <gpio.h> #include <soc/iomap.h> -#include <soc/nvs.h> #include <soc/pm.h> #include <intelblocks/smihandler.h> #include "ec.h" #include <variant/gpio.h> -int mainboard_io_trap_handler(int smif) -{ - switch (smif) { - case 0x99: - printk(BIOS_DEBUG, "Sample\n"); - gnvs->smif = 0; - break; - default: - return 0; - } - - /* On success, the IO Trap Handler returns 0 - * On failure, the IO Trap Handler returns a value != 0 - * - * For now, we force the return value to 0 and log all traps to - * see what's going on. - */ - return 1; -} - void mainboard_smi_gpi_handler(const struct gpi_status *sts) { if (gpi_status_get(sts, EC_SMI_GPI)) |