Skip to content
Snippets Groups Projects
Commit 6d001e7d authored by Alexey Brodkin's avatar Alexey Brodkin Committed by Heiko Schocher
Browse files

env_eeprom - fix bus recovery for "eeprom_bus_read"


"env_eeprom_bus" is no longer in use (it was introduced in commit
548738b4 "cmd_eeprom: I2C updates").

As in "eeprom_bus_write" we just reset I2C bus with the one we saved in
"old_bus".

Signed-off-by: default avatarAlexey Brodkin <abrodkin@synopsys.com>

Cc: Wolfgang Denk <wd@denx.de>
Cc: Tom Rini <trini@ti.com>
Cc: Heiko Schocher <hs@denx.de>
parent da1ed0d2
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,6 @@ DECLARE_GLOBAL_DATA_PTR; ...@@ -24,7 +24,6 @@ DECLARE_GLOBAL_DATA_PTR;
env_t *env_ptr; env_t *env_ptr;
char *env_name_spec = "EEPROM"; char *env_name_spec = "EEPROM";
int env_eeprom_bus = -1;
static int eeprom_bus_read(unsigned dev_addr, unsigned offset, static int eeprom_bus_read(unsigned dev_addr, unsigned offset,
uchar *buffer, unsigned cnt) uchar *buffer, unsigned cnt)
...@@ -40,8 +39,7 @@ static int eeprom_bus_read(unsigned dev_addr, unsigned offset, ...@@ -40,8 +39,7 @@ static int eeprom_bus_read(unsigned dev_addr, unsigned offset,
rcode = eeprom_read(dev_addr, offset, buffer, cnt); rcode = eeprom_read(dev_addr, offset, buffer, cnt);
#if defined(CONFIG_I2C_ENV_EEPROM_BUS) #if defined(CONFIG_I2C_ENV_EEPROM_BUS)
if (old_bus != env_eeprom_bus) i2c_set_bus_num(old_bus);
i2c_set_bus_num(old_bus);
#endif #endif
return rcode; return rcode;
...@@ -63,6 +61,7 @@ static int eeprom_bus_write(unsigned dev_addr, unsigned offset, ...@@ -63,6 +61,7 @@ static int eeprom_bus_write(unsigned dev_addr, unsigned offset,
#if defined(CONFIG_I2C_ENV_EEPROM_BUS) #if defined(CONFIG_I2C_ENV_EEPROM_BUS)
i2c_set_bus_num(old_bus); i2c_set_bus_num(old_bus);
#endif #endif
return rcode; return rcode;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment