diff options
author | Tom Rini <trini@konsulko.com> | 2020-04-21 08:28:13 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-21 08:28:13 -0400 |
commit | 1bf65142b31a48c8e354df603c9f6fa5c8cac389 (patch) | |
tree | fc720154f815f02befeff6d8c36794ad001f8497 /cmd | |
parent | 94c03c7c772bf7818ea84a092a90beaba1782046 (diff) | |
parent | 956d57a8ddf17dbd69f9120b399f621f15ea3f95 (diff) | |
download | u-boot-1bf65142b31a48c8e354df603c9f6fa5c8cac389.zip u-boot-1bf65142b31a48c8e354df603c9f6fa5c8cac389.tar.gz u-boot-1bf65142b31a48c8e354df603c9f6fa5c8cac389.tar.bz2 |
Merge tag 'for-v2020.07' of https://gitlab.denx.de/u-boot/custodians/u-boot-i2c
i2c changes for 2020.07
- add new i2c driver for Broadcom iproc-based socs
- fix cmd: eeprom: Staticize eeprom_i2c_bus
- i2c: muxes: pca954x: add PCA9546 variant
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/eeprom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/eeprom.c b/cmd/eeprom.c index 667149e..792415e 100644 --- a/cmd/eeprom.c +++ b/cmd/eeprom.c @@ -61,7 +61,7 @@ #endif #if defined(CONFIG_DM_I2C) -int eeprom_i2c_bus; +static int eeprom_i2c_bus; #endif __weak int eeprom_write_enable(unsigned dev_addr, int state) |