aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2015-05-28 11:25:50 +0200
committerVladimir Serbinenko <phcoder@gmail.com>2015-05-29 07:46:32 +0200
commit7ef3d903ab1496d01a3396804ae26d36f3ad21ab (patch)
tree487225f9a3597031b94d4492ec2bfabd3add6fd3 /src
parent852014cf003efa142e1992b45b2a4a627426a5df (diff)
x230: Clean up smihandler.c
Remove dead code and dead includes. Change-Id: I5564ebfbbef6f65c275c2f94f75724f4e36472db Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/10349 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <edward.ocallaghan@koparo.com>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/lenovo/x230/smihandler.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/mainboard/lenovo/x230/smihandler.c b/src/mainboard/lenovo/x230/smihandler.c
index 7e518ab83a..f0ef637fb5 100644
--- a/src/mainboard/lenovo/x230/smihandler.c
+++ b/src/mainboard/lenovo/x230/smihandler.c
@@ -23,14 +23,8 @@
#include <console/console.h>
#include <cpu/x86/smm.h>
#include <ec/acpi/ec.h>
-#include <pc80/mc146818rtc.h>
#include <ec/lenovo/h8/h8.h>
-#include <delay.h>
-#include <southbridge/intel/bd82x6x/nvs.h>
#include <southbridge/intel/bd82x6x/pch.h>
-#include <southbridge/intel/bd82x6x/me.h>
-#include <northbridge/intel/sandybridge/sandybridge.h>
-#include <cpu/intel/model_206ax/model_206ax.h>
#define GPE_EC_SCI 1
#define GPE_EC_WAKE 13
@@ -51,14 +45,7 @@ int mainboard_io_trap_handler(int smif)
smm_initialized = 1;
}
- switch (smif) {
- default:
- return 0;
- }
-
- /* On success, the IO Trap Handler returns 1
- * On failure, the IO Trap Handler returns a value != 1 */
- return 1;
+ return 0;
}
static void mainboard_smi_handle_ec_sci(void)