summaryrefslogtreecommitdiffstats
path: root/realtek_mst_i2c_spi.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <quasisec@google.com>2020-10-01 19:33:19 +1000
committerEdward O'Callaghan <quasisec@chromium.org>2020-10-02 01:01:02 +0000
commit3a49adadce560cabd0df2f4e36b17e3c2bdf61bc (patch)
treebd32d99b5ab1afdbc0ee7f13830fd6b08d3b8071 /realtek_mst_i2c_spi.c
parentd3b6acffe40351d84cfd6aaa0238f9a653d69aa1 (diff)
downloadflashrom-3a49adadce560cabd0df2f4e36b17e3c2bdf61bc.tar.gz
flashrom-3a49adadce560cabd0df2f4e36b17e3c2bdf61bc.tar.bz2
flashrom-3a49adadce560cabd0df2f4e36b17e3c2bdf61bc.zip
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>
Diffstat (limited to 'realtek_mst_i2c_spi.c')
-rw-r--r--realtek_mst_i2c_spi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/realtek_mst_i2c_spi.c b/realtek_mst_i2c_spi.c
index 615852484..78675289f 100644
--- a/realtek_mst_i2c_spi.c
+++ b/realtek_mst_i2c_spi.c
@@ -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;