diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-09-01 14:40:36 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-09-06 04:58:58 +0000 |
commit | 5fb2d3074fce9404440dfb81610f66c9c95d78d3 (patch) | |
tree | 1d9d59b4be81aec2c81fccd3eab3dbcb1debdc4c /src/northbridge/amd | |
parent | 38aff1ad41d6556dbcc466ce11f58ea8ca7a07b7 (diff) | |
download | coreboot-5fb2d3074fce9404440dfb81610f66c9c95d78d3.tar.xz |
AGESA f14: Fix duplicate call on S3 resume path
Change-Id: Ie316df6e2babd8b3e9e79f45ea9719b52b0c2902
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/21377
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/northbridge/amd')
-rw-r--r-- | src/northbridge/amd/agesa/family14/state_machine.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/northbridge/amd/agesa/family14/state_machine.c b/src/northbridge/amd/agesa/family14/state_machine.c index 3280180f8c..81d15bc445 100644 --- a/src/northbridge/amd/agesa/family14/state_machine.c +++ b/src/northbridge/amd/agesa/family14/state_machine.c @@ -56,10 +56,6 @@ void platform_BeforeInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env) void platform_AfterInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env) { amd_initenv(); -#if 0 - /* FIXME: Should move the callsite from cimx/sb800 to here. */ - sb_Before_Pci_Init(); -#endif } void platform_BeforeS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late) @@ -69,7 +65,6 @@ void platform_BeforeS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late) void platform_AfterS3LateRestore(struct sysinfo *cb, AMD_S3LATE_PARAMS *S3Late) { - sb_Before_Pci_Restore_Init(); } void platform_BeforeInitMid(struct sysinfo *cb, AMD_MID_PARAMS *Mid) |