armv7/exynos5420: Remove the extra reopen when reading SPI.
The workaround of re-opening device in exynos_spi_read has been fixed by the new correct open/close and xfer procedure. It's safe to be removed now. Change-Id: I6b1bf717c916903999a137998a578b0a866829bd Signed-off-by: Hung-Te Lin <hungte@chromium.org> Signed-off-by: Gabe Black <gabeblack@chromium.org> Reviewed-on: http://review.coreboot.org/3715 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
a965a37810
commit
f473df1419
|
@ -364,9 +364,6 @@ static size_t exynos_spi_cbfs_read(struct cbfs_media *media, void *dest,
|
||||||
int bytes;
|
int bytes;
|
||||||
DEBUG_SPI("exynos_spi_cbfs_read(%u)\n", count);
|
DEBUG_SPI("exynos_spi_cbfs_read(%u)\n", count);
|
||||||
bytes = exynos_spi_read(spi->slave, dest, count, offset);
|
bytes = exynos_spi_read(spi->slave, dest, count, offset);
|
||||||
// Flush and re-open the device.
|
|
||||||
spi_release_bus(spi->slave);
|
|
||||||
spi_claim_bus(spi->slave);
|
|
||||||
return bytes;
|
return bytes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue