summaryrefslogtreecommitdiffstats
path: root/src/mainboard/apple
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2015-01-08 12:06:35 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2015-01-09 05:23:57 +0100
commit1d7f5c5c37c37ff4f9792803147dc94482cf71ae (patch)
tree6aa3c21a592d51fdb219ad4f9324ef2f959437e7 /src/mainboard/apple
parent543888d5820ce28cbf1e03d53da9e7f75001c4c7 (diff)
downloadcoreboot-1d7f5c5c37c37ff4f9792803147dc94482cf71ae.tar.gz
coreboot-1d7f5c5c37c37ff4f9792803147dc94482cf71ae.tar.bz2
coreboot-1d7f5c5c37c37ff4f9792803147dc94482cf71ae.zip
macbook21 lenovo/xx: Fix inw() in SMI handlers
Missing base may have enabled SMI for all GPI inputs. Change-Id: I1157afaccccb17d325a4efdb1f270a27f9a299ab Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/8169 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/apple')
-rw-r--r--src/mainboard/apple/macbook21/smihandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/apple/macbook21/smihandler.c b/src/mainboard/apple/macbook21/smihandler.c
index ab039ddbf082..449e36777e83 100644
--- a/src/mainboard/apple/macbook21/smihandler.c
+++ b/src/mainboard/apple/macbook21/smihandler.c
@@ -69,7 +69,7 @@ int mainboard_smi_apmc(u8 data)
switch(data) {
case APM_CNT_ACPI_ENABLE:
/* route H8SCI to SCI */
- outw(inw(ALT_GP_SMI_EN) & ~0x1000, pmbase + ALT_GP_SMI_EN);
+ outw(inw(pmbase + ALT_GP_SMI_EN) & ~0x1000, pmbase + ALT_GP_SMI_EN);
tmp = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xbb);
tmp &= ~0x03;
tmp |= 0x02;