diff options
author | Tom Rini <trini@konsulko.com> | 2024-07-23 10:43:58 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-07-23 10:43:58 -0600 |
commit | f659ba43837e5ae5a35fdff3736c8e13f9062abd (patch) | |
tree | b14ed130f0e1a7efd85a755f389ac8788fd603c0 /board/keymile/common/common.c | |
parent | 123f6f75dfcb5f88d821e4eb91ddedfb7718d601 (diff) | |
parent | 3a63612c5f7b20e24a0bfebc5686dc78dfee6510 (diff) |
Merge branch '2024-07-23-remove-or-update-some-platforms'
- Update a few platforms to use DM_I2C finally, and remove a number of
other older platforms.
Diffstat (limited to 'board/keymile/common/common.c')
-rw-r--r-- | board/keymile/common/common.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index 9358c25dcb0..25897af2d8a 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -129,7 +129,6 @@ void check_for_uboot_update(void) } #endif -#if defined(CONFIG_SYS_I2C_INIT_BOARD) static void i2c_write_start_seq(void) { set_sda(1); @@ -187,17 +186,6 @@ int i2c_make_abort(void) return ret; } -/** - * i2c_init_board - reset i2c bus. When the board is powercycled during a - * bus transfer it might hang; for details see doc/I2C_Edge_Conditions. - */ -void i2c_init_board(void) -{ - /* Now run the AbortSequence() */ - i2c_make_abort(); -} -#endif - #if defined(CONFIG_KM_COMMON_ETH_INIT) int board_eth_init(struct bd_info *bis) { |