diff options
author | Peter Lemenkov <lemenkov@gmail.com> | 2019-10-22 18:36:59 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-10-25 07:02:02 +0000 |
commit | b2832e3586530361cf92bdf55d060365fdcdf44c (patch) | |
tree | 130ff460acb0552d16f4295c2b089a527f542028 /src/mainboard/lenovo | |
parent | 8c09b82cb19932990956810533f159ddbc64d5fc (diff) |
mb/*/*/smihandler: Remove bogus SMM init
I does nothing on these boards. It's just a call a local noop function
which only prints a debug-level message.
Change-Id: Id3fb2e9074db72d9025b95f7d4918417dd488b9e
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36236
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/lenovo')
-rw-r--r-- | src/mainboard/lenovo/s230u/smihandler.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mainboard/lenovo/s230u/smihandler.c b/src/mainboard/lenovo/s230u/smihandler.c index 3c4df31f08..1abf0c88a7 100644 --- a/src/mainboard/lenovo/s230u/smihandler.c +++ b/src/mainboard/lenovo/s230u/smihandler.c @@ -32,20 +32,8 @@ /* FIXME: check this */ #define GPE_EC_WAKE 13 -static void mainboard_smm_init(void) -{ - printk(BIOS_DEBUG, "initializing SMI\n"); -} - int mainboard_io_trap_handler(int smif) { - static int smm_initialized; - - if (!smm_initialized) { - mainboard_smm_init(); - smm_initialized = 1; - } - return 0; } |