diff options
Diffstat (limited to 'board')
| -rw-r--r-- | board/compulab/cm_t35/cm_t35.c | 2 | ||||
| -rw-r--r-- | board/compulab/common/Makefile | 2 | ||||
| -rw-r--r-- | board/compulab/common/eeprom.h | 2 | ||||
| -rw-r--r-- | board/logicpd/am3517evm/am3517evm.c | 4 | ||||
| -rw-r--r-- | board/overo/overo.c | 2 | ||||
| -rw-r--r-- | board/phytec/pcm051/board.c | 4 | ||||
| -rw-r--r-- | board/siemens/common/board.c | 4 | ||||
| -rw-r--r-- | board/ti/am335x/board.c | 2 | ||||
| -rw-r--r-- | board/ti/am3517crane/am3517crane.c | 4 | ||||
| -rw-r--r-- | board/ti/evm/evm.c | 4 | 
10 files changed, 15 insertions, 15 deletions
| diff --git a/board/compulab/cm_t35/cm_t35.c b/board/compulab/cm_t35/cm_t35.c index 9f2937a9783..bc8e0cad949 100644 --- a/board/compulab/cm_t35/cm_t35.c +++ b/board/compulab/cm_t35/cm_t35.c @@ -482,7 +482,7 @@ static void setup_net_chip_gmpc(void)  		&ctrl_base->gpmc_nadv_ale);  } -#ifdef CONFIG_DRIVER_OMAP34XX_I2C +#ifdef CONFIG_SYS_I2C_OMAP34XX  /*   * Routine: reset_net_chip   * Description: reset the Ethernet controller via TPS65930 GPIO diff --git a/board/compulab/common/Makefile b/board/compulab/common/Makefile index 831be2e0e74..6d7d06815cd 100644 --- a/board/compulab/common/Makefile +++ b/board/compulab/common/Makefile @@ -6,5 +6,5 @@  # SPDX-License-Identifier:	GPL-2.0+  # -obj-$(CONFIG_DRIVER_OMAP34XX_I2C) += eeprom.o +obj-$(CONFIG_SYS_I2C_OMAP34XX) += eeprom.o  obj-$(CONFIG_LCD) += omap3_display.o diff --git a/board/compulab/common/eeprom.h b/board/compulab/common/eeprom.h index cf8c302b2e6..e87162930d8 100644 --- a/board/compulab/common/eeprom.h +++ b/board/compulab/common/eeprom.h @@ -10,7 +10,7 @@  #ifndef _EEPROM_  #define _EEPROM_ -#ifdef CONFIG_DRIVER_OMAP34XX_I2C +#ifdef CONFIG_SYS_I2C_OMAP34XX  int cl_eeprom_read_mac_addr(uchar *buf);  u32 cl_eeprom_get_board_rev(void);  #else diff --git a/board/logicpd/am3517evm/am3517evm.c b/board/logicpd/am3517evm/am3517evm.c index b6c68da7a89..15699054603 100644 --- a/board/logicpd/am3517evm/am3517evm.c +++ b/board/logicpd/am3517evm/am3517evm.c @@ -98,8 +98,8 @@ static void am3517_evm_musb_init(void)   */  int misc_init_r(void)  { -#ifdef CONFIG_DRIVER_OMAP34XX_I2C -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +#ifdef CONFIG_SYS_I2C_OMAP34XX +	i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);  #endif  	dieid_num_r(); diff --git a/board/overo/overo.c b/board/overo/overo.c index aace42a8be5..9ac35d2f4e3 100644 --- a/board/overo/overo.c +++ b/board/overo/overo.c @@ -92,7 +92,7 @@ int get_board_revision(void)  {  	int revision; -#ifdef CONFIG_DRIVER_OMAP34XX_I2C +#ifdef CONFIG_SYS_I2C_OMAP34XX  	unsigned char data;  	/* board revisions <= R2410 connect 4030 irq_1 to gpio112             */ diff --git a/board/phytec/pcm051/board.c b/board/phytec/pcm051/board.c index dafb1eb8e63..034886ad5d9 100644 --- a/board/phytec/pcm051/board.c +++ b/board/phytec/pcm051/board.c @@ -91,7 +91,7 @@ void set_mux_conf_regs(void)  {  	/* Initalize the board header */  	enable_i2c0_pin_mux(); -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +	i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);  	enable_board_pin_mux();  } @@ -108,7 +108,7 @@ void sdram_init(void)   */  int board_init(void)  { -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +	i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);  	gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; diff --git a/board/siemens/common/board.c b/board/siemens/common/board.c index 6279c3281ce..32d2ee4de94 100644 --- a/board/siemens/common/board.c +++ b/board/siemens/common/board.c @@ -42,7 +42,7 @@ void set_mux_conf_regs(void)  {  	/* Initalize the board header */  	enable_i2c0_pin_mux(); -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +	i2c_set_bus_num(0);  	if (read_eeprom() < 0)  		puts("Could not get board ID.\n"); @@ -67,7 +67,7 @@ int board_init(void)  #if defined(CONFIG_HW_WATCHDOG)  	hw_watchdog_init();  #endif /* defined(CONFIG_HW_WATCHDOG) */ -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +	i2c_set_bus_num(0);  	if (read_eeprom() < 0)  		puts("Could not get board ID.\n"); diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index 57fedab340a..8edd21b119d 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -397,7 +397,7 @@ const struct dpll_params *get_dpll_ddr_params(void)  	struct am335x_baseboard_id header;  	enable_i2c0_pin_mux(); -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +	i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);  	if (read_eeprom(&header) < 0)  		puts("Could not get board ID.\n"); diff --git a/board/ti/am3517crane/am3517crane.c b/board/ti/am3517crane/am3517crane.c index 5eb97ff3780..a649697257a 100644 --- a/board/ti/am3517crane/am3517crane.c +++ b/board/ti/am3517crane/am3517crane.c @@ -43,8 +43,8 @@ int board_init(void)   */  int misc_init_r(void)  { -#ifdef CONFIG_DRIVER_OMAP34XX_I2C -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +#ifdef CONFIG_SYS_I2C_OMAP34XX +	i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);  #endif  	dieid_num_r(); diff --git a/board/ti/evm/evm.c b/board/ti/evm/evm.c index c71c2185299..81dd081d76a 100644 --- a/board/ti/evm/evm.c +++ b/board/ti/evm/evm.c @@ -146,8 +146,8 @@ void get_board_mem_timings(struct board_sdrc_timings *timings)  int misc_init_r(void)  { -#ifdef CONFIG_DRIVER_OMAP34XX_I2C -	i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); +#ifdef CONFIG_SYS_I2C_OMAP34XX +	i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);  #endif  #if defined(CONFIG_CMD_NET) | 
