Kyösti Mälkki (kyosti.malkki@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7967
-gerrit
commit d8815da792e8c6050c093c7b339f0b368940d221 Author: Kyösti Mälkki kyosti.malkki@gmail.com Date: Mon Dec 29 11:32:27 2014 +0200
lenovo/x201: Fix mainboard_smi_gpi()
Only affected APM mode, when H8SCI is delivered as SMI.
Change-Id: Iab14cf347584513793f417febc47f0559e17f5a5 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- src/mainboard/lenovo/x201/smihandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/lenovo/x201/smihandler.c b/src/mainboard/lenovo/x201/smihandler.c index ad3911c..6e248c8 100644 --- a/src/mainboard/lenovo/x201/smihandler.c +++ b/src/mainboard/lenovo/x201/smihandler.c @@ -137,7 +137,7 @@ static void mainboard_smi_handle_ec_sci(void)
void mainboard_smi_gpi(u32 gpi_sts) { - if (gpi_sts & (1 << 1)) + if (gpi_sts & (1 << 12)) mainboard_smi_handle_ec_sci(); }