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>
This commit is contained in:
Denis 'GNUtoo' Carikli 2013-05-26 18:12:54 +02:00 committed by Stefan Reinauer
parent d1fb5641b6
commit b694f10c00
1 changed files with 1 additions and 1 deletions

View File

@ -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);