mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
eeprom: at25: set minimum read/write access stride to 1
SPI eeproms are addressed by byte. Signed-off-by: Christian Eggers <ceggers@arri.de> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20200728092959.24600-1-ceggers@arri.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d3cd0071a8
commit
284f52ac1c
|
|
@ -358,7 +358,7 @@ static int at25_probe(struct spi_device *spi)
|
|||
at25->nvmem_config.reg_read = at25_ee_read;
|
||||
at25->nvmem_config.reg_write = at25_ee_write;
|
||||
at25->nvmem_config.priv = at25;
|
||||
at25->nvmem_config.stride = 4;
|
||||
at25->nvmem_config.stride = 1;
|
||||
at25->nvmem_config.word_size = 1;
|
||||
at25->nvmem_config.size = chip.byte_len;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user