summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/x220/smihandler.c
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2018-10-11 15:15:02 +0200
committerMartin Roth <martinroth@google.com>2018-10-15 15:41:51 +0000
commit0f79a92bb68c0f8d289364361cf2b835b062743e (patch)
tree9ff2cdc294deeb1c1d198a5ddc39e8b47f32b75e /src/mainboard/lenovo/x220/smihandler.c
parent43fcec67e596eed2d4fff71b2924879846a402fb (diff)
downloadcoreboot-0f79a92bb68c0f8d289364361cf2b835b062743e.tar.gz
coreboot-0f79a92bb68c0f8d289364361cf2b835b062743e.tar.bz2
coreboot-0f79a92bb68c0f8d289364361cf2b835b062743e.zip
mb/lenovo/*/smihandler: Remove some unused includes
Tried to build all affected mainboards - still compiles fine. Change-Id: I385cac1a75cee13453b831bd75b3ecc7a6d229fa Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://review.coreboot.org/29033 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/mainboard/lenovo/x220/smihandler.c')
-rw-r--r--src/mainboard/lenovo/x220/smihandler.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mainboard/lenovo/x220/smihandler.c b/src/mainboard/lenovo/x220/smihandler.c
index 0491392bccc3..c967e4084e92 100644
--- a/src/mainboard/lenovo/x220/smihandler.c
+++ b/src/mainboard/lenovo/x220/smihandler.c
@@ -20,13 +20,8 @@
#include <cpu/x86/smm.h>
#include <ec/acpi/ec.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 <southbridge/intel/common/pmutil.h>
-#include <northbridge/intel/sandybridge/sandybridge.h>
-#include <cpu/intel/model_206ax/model_206ax.h>
+#include <southbridge/intel/bd82x6x/pch.h>
#define GPE_EC_SCI 1
#define GPE_EC_WAKE 13
@@ -111,7 +106,7 @@ void mainboard_smi_sleep(u8 slp_typ)
if (slp_typ == 3) {
u8 ec_wake = ec_read(0x32);
- /* If EC wake events are enabled, enable wake on EC WAKE GPE. */
+ /* If EC wake events are enabled, enable wake on EC WAKE GPE. */
if (ec_wake & 0x14) {
/* Redirect EC WAKE GPE to SCI. */
gpi_route_interrupt(GPE_EC_WAKE, GPI_IS_SCI);