mb/sapphire/pureplatinumh61: Remove S3 resume delay

It seems that recent changes in coreboot have fixed the raminit issues
on this board; the workaround of 10 ms delay after the S3 resume is not
needed anymore and can be removed.

Change-Id: If8fb97ecf3eb797f53270a053201fafd32031678
Signed-off-by: Nicola Corna <nicola@corna.info>
Reviewed-on: https://review.coreboot.org/21485
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Nicola Corna 2017-09-11 16:51:03 +02:00 committed by Martin Roth
parent fd0a891ee9
commit 5da1e3156c

View File

@ -70,13 +70,6 @@ const struct southbridge_usb_port mainboard_usb_ports[] = {
void mainboard_early_init(int s3resume) void mainboard_early_init(int s3resume)
{ {
if (s3resume) {
/*
* Raminit after S3 resume fails if started too early; a delay
* of 10 ms seems to be sufficient to fix the issue.
*/
mdelay(10);
}
} }
void mainboard_config_superio(void) void mainboard_config_superio(void)