diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-18 20:09:52 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-01 07:03:15 -0600 |
commit | 2dd57f5e47f20a387770e4ca4adca5427f819fe6 (patch) | |
tree | a1933d6ad08b68029f5b1dc48b69342b9671a7a2 /drivers/misc | |
parent | bf501595cd5981b0196b51505ad50972b1c34cc4 (diff) | |
download | u-boot-2dd57f5e47f20a387770e4ca4adca5427f819fe6.tar.gz |
dm: Update the I2C eeprom driver for livetree
Update this driver so that it works with livetree.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/i2c_eeprom_emul.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/misc/i2c_eeprom_emul.c b/drivers/misc/i2c_eeprom_emul.c index 02de8d7df3..52aa7d69e9 100644 --- a/drivers/misc/i2c_eeprom_emul.c +++ b/drivers/misc/i2c_eeprom_emul.c @@ -9,7 +9,6 @@ #include <common.h> #include <dm.h> #include <errno.h> -#include <fdtdec.h> #include <i2c.h> #include <malloc.h> #include <asm/test.h> @@ -115,10 +114,8 @@ static int sandbox_i2c_eeprom_ofdata_to_platdata(struct udevice *dev) { struct sandbox_i2c_flash_plat_data *plat = dev_get_platdata(dev); - plat->size = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), - "sandbox,size", 32); - plat->filename = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), - "sandbox,filename", NULL); + plat->size = dev_read_u32_default(dev, "sandbox,size", 32); + plat->filename = dev_read_string(dev, "sandbox,filename"); if (!plat->filename) { debug("%s: No filename for device '%s'\n", __func__, dev->name); |