summaryrefslogtreecommitdiffstats
path: root/it87spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'it87spi.c')
-rw-r--r--it87spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/it87spi.c b/it87spi.c
index 8224db08e..e34f5e8d5 100644
--- a/it87spi.c
+++ b/it87spi.c
@@ -108,7 +108,7 @@ static int it8716f_spi_chip_write_256(struct flashctx *flash, const uint8_t *buf
unsigned int start, unsigned int len);
static const struct spi_master spi_master_it87xx = {
- .max_data_read = MAX_DATA_UNSPECIFIED,
+ .max_data_read = 3,
.max_data_write = MAX_DATA_UNSPECIFIED,
.command = it8716f_spi_send_command,
.multicommand = default_spi_send_multicommand,
@@ -380,7 +380,7 @@ static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf,
* via a programmer parameter for the internal programmer.
*/
if ((flash->chip->total_size * 1024 > 512 * 1024)) {
- spi_read_chunked(flash, buf, start, len, 3);
+ default_spi_read(flash, buf, start, len);
} else {
mmio_readn((void *)(flash->virtual_memory + start), buf, len);
}