summaryrefslogtreecommitdiff
path: root/src/southbridge/amd/agesa/hudson/hudson.c
diff options
context:
space:
mode:
authorAlexandru Gagniuc <mr.nuke.me@gmail.com>2014-04-20 13:24:42 -0500
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2014-04-20 21:44:16 +0200
commitcf1f9b6a5bd1be169756dd1cd9568492a880651c (patch)
treed451ec4ce232af24145129ad55456d4aed68ec64 /src/southbridge/amd/agesa/hudson/hudson.c
parent991e951461bc57debc2df82bac76d0ab57682e66 (diff)
downloadcoreboot-cf1f9b6a5bd1be169756dd1cd9568492a880651c.tar.xz
southbridge/hudson: Remove redundant definitions of ACPI IO ports
The ACPI IO ports were defined twice, and used inconsistently. Only keep one of the definitions for consistency. Change-Id: If5744f9375fdaa97ceb9ba03dca8aa825eecf159 Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/5558 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/southbridge/amd/agesa/hudson/hudson.c')
-rw-r--r--src/southbridge/amd/agesa/hudson/hudson.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/agesa/hudson/hudson.c b/src/southbridge/amd/agesa/hudson/hudson.c
index cd63c3e814..39dab23d0d 100644
--- a/src/southbridge/amd/agesa/hudson/hudson.c
+++ b/src/southbridge/amd/agesa/hudson/hudson.c
@@ -40,7 +40,7 @@
#if CONFIG_HAVE_ACPI_RESUME
int acpi_get_sleep_type(void)
{
- u16 tmp = inw(PM1_CNT_BLK_ADDRESS);
+ u16 tmp = inw(ACPI_PM1_CNT_BLK);
tmp = ((tmp & (7 << 10)) >> 10);
/* printk(BIOS_DEBUG, "SLP_TYP type was %x\n", tmp); */
return (int)tmp;