mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
eeprom: fix eeprom write procedure
This fixes commit 1a37889b0a:
----------------------->8--------------------
eeprom: Pull out the RW loop
Unify the code for doing read/write into single function, since the
code for both the read and write is almost identical. This again
trims down the code duplication.
----------------------->8--------------------
where the same one routine is utilized for both EEPROM writing and
reading. The only difference was supposed to be a "read" flag which
in both cases was set with 1 somehow.
That lead to a missing delay in case of writing which lead to write
failure (in my case no data was written).
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Acked-by: Marek Vasut <marex@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Cc: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
2e680f92b8
commit
52bc7c7e2b
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ int eeprom_write(unsigned dev_addr, unsigned offset,
|
|||
* We must write the address again when changing pages
|
||||
* because the address counter only increments within a page.
|
||||
*/
|
||||
ret = eeprom_rw(dev_addr, offset, buffer, cnt, 1);
|
||||
ret = eeprom_rw(dev_addr, offset, buffer, cnt, 0);
|
||||
|
||||
eeprom_write_enable(dev_addr, 0);
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue