From 233f186e95cf76d3a5bb5a7224769f63c36c5931 Mon Sep 17 00:00:00 2001 From: Stefan Reinauerstepan Date: Tue, 6 Apr 2010 21:49:31 +0000 Subject: fam10 acpi fix Signed-off-by: Stefan Reinauer Acked-by: Marc Jones git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5358 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/northbridge/amd/amdfam10/amdfam10_acpi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/northbridge/amd/amdfam10/amdfam10_acpi.c b/src/northbridge/amd/amdfam10/amdfam10_acpi.c index 9f6bdaf531..34d5db5511 100644 --- a/src/northbridge/amd/amdfam10/amdfam10_acpi.c +++ b/src/northbridge/amd/amdfam10/amdfam10_acpi.c @@ -296,10 +296,10 @@ void update_sspr(void *sspr, u32 nodeid, u32 cpuindex) for(i=0;icorefreq); - intx_to_stream(POWER + i*offset, 3, p_state->power); - intx_to_stream(TRANSITION_LAT + i*offset, 2, p_state->transition_lat); - intx_to_stream(BUSMASTER_LAT + i*offset, 2, p_state->busmaster_lat); + intx_to_stream(p_state->corefreq, 2, COREFREQ + i*offset); + intx_to_stream(p_state->power, 3, POWER + i*offset); + intx_to_stream(p_state->transition_lat, 2, TRANSITION_LAT + i*offset); + intx_to_stream(p_state->busmaster_lat, 2, BUSMASTER_LAT + i*offset); *((u8 *)(CONTROL + i*offset)) =(u8) p_state->control; *((u8 *)(STATUS + i*offset)) =(u8) p_state->status; } -- cgit v1.2.3