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>
This commit is contained in:
parent
38aff1ad41
commit
5fb2d3074f
|
@ -56,10 +56,6 @@ void platform_BeforeInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
|
||||||
void platform_AfterInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
|
void platform_AfterInitEnv(struct sysinfo *cb, AMD_ENV_PARAMS *Env)
|
||||||
{
|
{
|
||||||
amd_initenv();
|
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)
|
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)
|
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)
|
void platform_BeforeInitMid(struct sysinfo *cb, AMD_MID_PARAMS *Mid)
|
||||||
|
|
Loading…
Reference in New Issue