summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/i82801gx
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2013-05-26 18:12:54 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-07-10 00:52:20 +0200
commitb694f10c006168c8497d87d8f33da74724126d01 (patch)
treeaf3366a4d296a8133ec651c18cfe6476cd7a8d07 /src/southbridge/intel/i82801gx
parentd1fb5641b6ae3710b7d6c444000a6cbbe0cb6f74 (diff)
downloadcoreboot-b694f10c006168c8497d87d8f33da74724126d01.tar.gz
coreboot-b694f10c006168c8497d87d8f33da74724126d01.tar.bz2
coreboot-b694f10c006168c8497d87d8f33da74724126d01.zip
southbridge: i82801gx: smihandler.c: Correct outl->outw mistake.
This mistake was spoted by comparison with the src/southbridge/intel/bd82x6x/smihandler.c file. Change-Id: I1516f0131d524bd7d001e6780e9a45402d1814d1 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> Reviewed-on: http://review.coreboot.org/3303 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/i82801gx')
-rw-r--r--src/southbridge/intel/i82801gx/smihandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801gx/smihandler.c b/src/southbridge/intel/i82801gx/smihandler.c
index 2e29acd2f835..237ac085fbb9 100644
--- a/src/southbridge/intel/i82801gx/smihandler.c
+++ b/src/southbridge/intel/i82801gx/smihandler.c
@@ -448,7 +448,7 @@ static void southbridge_smi_gpi(unsigned int node, smm_state_save_area_t *state_
{
u16 reg16;
reg16 = inw(pmbase + ALT_GP_SMI_STS);
- outl(reg16, pmbase + ALT_GP_SMI_STS);
+ outw(reg16, pmbase + ALT_GP_SMI_STS);
reg16 &= inw(pmbase + ALT_GP_SMI_EN);