From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko Schocher Date: Mon, 15 May 2017 06:24:49 +0200 Subject: [U-Boot] [PATCH v3 07/12] i2c: omap: Modify code to work without CONFIG_I2C_HARD In-Reply-To: <20170513031000.5429-8-sjg@chromium.org> References: <20170513031000.5429-1-sjg@chromium.org> <20170513031000.5429-8-sjg@chromium.org> Message-ID: <59192D91.8090800@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello Simon, Am 13.05.2017 um 05:09 schrieb Simon Glass: > Drop use of this long-deprecated option. > > Signed-off-by: Simon Glass > Suggested-by: Lokesh Vutla > --- > > Changes in v3: None > Changes in v2: > - Add new patch to adjust omap boards to not need CONFIG_I2C_HARD > > board/ti/am335x/board.c | 3 ++- > board/ti/am43xx/board.c | 3 ++- > 2 files changed, 4 insertions(+), 2 deletions(-) Thanks! Applied to u-boot-i2c.git master u-boot-i2c master just testing on travis: https://travis-ci.org/hsdenx/u-boot-i2c/builds/232288665 bye, Heiko > > diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c > index 3e81521399..517965c0f0 100644 > --- a/board/ti/am335x/board.c > +++ b/board/ti/am335x/board.c > @@ -72,7 +72,8 @@ void do_board_detect(void) > enable_i2c0_pin_mux(); > i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE); > > - if (ti_i2c_eeprom_am_get(-1, CONFIG_SYS_I2C_EEPROM_ADDR)) > + if (ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS, > + CONFIG_EEPROM_CHIP_ADDRESS)) > printf("ti_i2c_eeprom_init failed\n"); > } > #endif > diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c > index f633e2f85d..f44103d4d6 100644 > --- a/board/ti/am43xx/board.c > +++ b/board/ti/am43xx/board.c > @@ -42,7 +42,8 @@ static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE; > #ifdef CONFIG_TI_I2C_BOARD_DETECT > void do_board_detect(void) > { > - if (ti_i2c_eeprom_am_get(-1, CONFIG_SYS_I2C_EEPROM_ADDR)) > + if (ti_i2c_eeprom_am_get(CONFIG_EEPROM_BUS_ADDRESS, > + CONFIG_EEPROM_CHIP_ADDRESS)) > printf("ti_i2c_eeprom_init failed\n"); > } > #endif > -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany