1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

realtek_mst_i2c_spi.c: Remove reset from init fn

Remove MCU reset on init as this was only introduced
when MCU fw requirements for correct flashing were unknown
however it turns out no MCU fw is required to flash and so
no MCU reset should occur upon initialization.

Change-Id: Ia03f94effc4b720964638c032bbde5acfb13960d
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/45896
Reviewed-by: Sam McNally <sammc@google.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Edward O'Callaghan 2020-10-01 19:33:19 +10:00 committed by Edward O'Callaghan
parent d3b6acffe4
commit 3a49adadce

View File

@ -450,11 +450,6 @@ int realtek_mst_i2c_spi_init(void)
if (fd < 0)
return fd;
/* Ensure we are in a known state before entering ISP mode */
ret |= realtek_mst_i2c_spi_reset_mpu(fd);
if (ret)
return ret;
ret |= realtek_mst_i2c_spi_enter_isp_mode(fd);
if (ret)
return ret;