diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-04 10:13:57 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 10:15:12 -0500 |
commit | d8964b3e1d7233a1b45679c57985575ec0056022 (patch) | |
tree | 98badc9563b9ea7549b54b968628c4aaf9e26178 /cmd/i2c.c | |
parent | e02e5e5188b94a084e46fccf455026cef4c6d01a (diff) | |
download | u-boot-d8964b3e1d7233a1b45679c57985575ec0056022.tar.gz u-boot-d8964b3e1d7233a1b45679c57985575ec0056022.tar.bz2 u-boot-d8964b3e1d7233a1b45679c57985575ec0056022.zip |
global: Migrate CONFIG_SYS_I2C_DIRECT_BUS to CFG
Perform a simple rename of CONFIG_SYS_I2C_DIRECT_BUS to CFG_SYS_I2C_DIRECT_BUS
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/i2c.c')
-rw-r--r-- | cmd/i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1699,7 +1699,7 @@ static int do_i2c_show_bus(struct cmd_tbl *cmdtp, int flag, int argc, for (i = 0; i < CFG_SYS_NUM_I2C_BUSES; i++) { printf("Bus %d:\t%s", i, I2C_ADAP_NR(i)->name); -#ifndef CONFIG_SYS_I2C_DIRECT_BUS +#ifndef CFG_SYS_I2C_DIRECT_BUS int j; for (j = 0; j < CFG_SYS_I2C_MAX_HOPS; j++) { @@ -1735,7 +1735,7 @@ static int do_i2c_show_bus(struct cmd_tbl *cmdtp, int flag, int argc, return -1; } printf("Bus %d:\t%s", i, I2C_ADAP_NR(i)->name); -#ifndef CONFIG_SYS_I2C_DIRECT_BUS +#ifndef CFG_SYS_I2C_DIRECT_BUS int j; for (j = 0; j < CFG_SYS_I2C_MAX_HOPS; j++) { if (i2c_bus[i].next_hop[j].chip == 0) |