summaryrefslogtreecommitdiff
path: root/board/freescale
diff options
context:
space:
mode:
authorBiwen Li <biwen.li@nxp.com>2020-05-01 20:56:37 +0800
committerPriyanka Jain <priyanka.jain@nxp.com>2020-05-04 09:12:36 +0530
commit01d97d5f18a28dfbb8d5e033f2408040fb4f8134 (patch)
treeaade00e9bdf2f5704286159e51343de6d3fe3f0d /board/freescale
parent70571f981b01e900c2ae320f7f06726ce69291bd (diff)
downloadu-boot-01d97d5f18a28dfbb8d5e033f2408040fb4f8134.tar.gz
dm: ppc: MPC8548CDS: add i2c DM support
This supports i2c DM for board MPC8548CDS Signed-off-by: Biwen Li <biwen.li@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/common/sys_eeprom.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/common/sys_eeprom.c b/board/freescale/common/sys_eeprom.c
index 6f151b0f71..c487e3a515 100644
--- a/board/freescale/common/sys_eeprom.c
+++ b/board/freescale/common/sys_eeprom.c
@@ -595,6 +595,7 @@ unsigned int get_cpu_board_revision(void)
(void *)&be, sizeof(be));
#else
struct udevice *dev;
+ int ret;
#ifdef CONFIG_SYS_EEPROM_BUS_NUM
ret = i2c_get_chip_for_busnum(CONFIG_SYS_EEPROM_BUS_NUM,
CONFIG_SYS_I2C_EEPROM_ADDR,
@@ -603,7 +604,7 @@ unsigned int get_cpu_board_revision(void)
#else
ret = i2c_get_chip_for_busnum(0, CONFIG_SYS_I2C_EEPROM_ADDR,
CONFIG_SYS_I2C_EEPROM_ADDR_LEN,
- &dev)
+ &dev);
#endif
if (!ret)
dm_i2c_read(dev, 0, (void *)&be, sizeof(be));