diff options
author | Tom Rini <trini@konsulko.com> | 2022-11-10 10:09:02 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-11-10 10:09:40 -0500 |
commit | 0cbeed4f6648e0e4966475e3544280a69ecb59d3 (patch) | |
tree | a7b4b6b44bc3d43628e654f0c75ef2fab49ffd1b /drivers/i2c/fsl_i2c.c | |
parent | 77b5cc2948f5d93fe3d275302f596ffd8701a875 (diff) | |
parent | cc1159bbfa94a60e4180846e480b887cf91fa722 (diff) |
Merge branch '2022-11-10-symbol-migrations'
- Migrate a number of CONFIG symbols to Kconfig and start migrating some
symbol families from CONFIG to the CFG namespace.
Diffstat (limited to 'drivers/i2c/fsl_i2c.c')
-rw-r--r-- | drivers/i2c/fsl_i2c.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/i2c/fsl_i2c.c b/drivers/i2c/fsl_i2c.c index 9a3c8241bc6..edbcd83b646 100644 --- a/drivers/i2c/fsl_i2c.c +++ b/drivers/i2c/fsl_i2c.c @@ -271,13 +271,6 @@ static void __i2c_init(const struct fsl_i2c_base *base, int speed, int const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); unsigned long long timeval; -#ifdef CONFIG_SYS_I2C_INIT_BOARD - /* Call board specific i2c bus reset routine before accessing the - * environment, which might be in a chip on that bus. For details - * about this problem see doc/I2C_Edge_Conditions. - */ - i2c_init_board(); -#endif writeb(0, &base->cr); /* stop I2C controller */ udelay(5); /* let it shutdown in peace */ set_i2c_bus_speed(base, i2c_clk, speed); |