arm: mvebu: turris_omnia: Rename variable holding EEPROM udevice
Rename the variable holding the EEPROM udevice from `chip` to `eeprom`. Signed-off-by: Marek Behún <kabel@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
committed by
Stefan Roese
parent
1312faac5f
commit
1df8b54c1b
@@ -464,16 +464,16 @@ static bool check_eeprom_crc(const void *buf, size_t size, u32 expected,
|
||||
|
||||
static bool omnia_read_eeprom(struct omnia_eeprom *oep)
|
||||
{
|
||||
struct udevice *chip;
|
||||
struct udevice *eeprom;
|
||||
int ret;
|
||||
|
||||
chip = omnia_get_i2c_chip("EEPROM", OMNIA_I2C_EEPROM_CHIP_ADDR,
|
||||
OMNIA_I2C_EEPROM_CHIP_LEN);
|
||||
eeprom = omnia_get_i2c_chip("EEPROM", OMNIA_I2C_EEPROM_CHIP_ADDR,
|
||||
OMNIA_I2C_EEPROM_CHIP_LEN);
|
||||
|
||||
if (!chip)
|
||||
if (!eeprom)
|
||||
return false;
|
||||
|
||||
ret = dm_i2c_read(chip, 0, (void *)oep, sizeof(*oep));
|
||||
ret = dm_i2c_read(eeprom, 0, (void *)oep, sizeof(*oep));
|
||||
if (ret) {
|
||||
printf("dm_i2c_read failed: %i, cannot read EEPROM\n", ret);
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user