diff options
Diffstat (limited to 'board/cm_t35/cm_t35.c')
| -rw-r--r-- | board/cm_t35/cm_t35.c | 19 | 
1 files changed, 7 insertions, 12 deletions
diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 7af1f41af..89e6b08e7 100644 --- a/board/cm_t35/cm_t35.c +++ b/board/cm_t35/cm_t35.c @@ -100,17 +100,6 @@ int board_init(void)  }  /* - * Routine: misc_init_r - * Description: display die ID - */ -int misc_init_r(void) -{ -	dieid_num_r(); - -	return 0; -} - -/*   * Routine: set_muxconf_regs   * Description: Setting up the configuration Mux registers specific to the   *		hardware. Many pins need to be moved from protect to primary @@ -241,6 +230,12 @@ static void cm_t3x_set_common_muxconf(void)  	/* I2C1 */  	MUX_VAL(CP(I2C1_SCL),		(IEN  | PTU | EN  | M0)); /*I2C1_SCL*/  	MUX_VAL(CP(I2C1_SDA),		(IEN  | PTU | EN  | M0)); /*I2C1_SDA*/ +	/* I2C2 */ +	MUX_VAL(CP(I2C2_SCL),		(IEN  | PTU | EN  | M0)); /*I2C2_SCL*/ +	MUX_VAL(CP(I2C2_SDA),		(IEN  | PTU | EN  | M0)); /*I2C2_SDA*/ +	/* I2C3 */ +	MUX_VAL(CP(I2C3_SCL),		(IEN  | PTU | EN  | M0)); /*I2C3_SCL*/ +	MUX_VAL(CP(I2C3_SDA),		(IEN  | PTU | EN  | M0)); /*I2C3_SDA*/  	/* control and debug */  	MUX_VAL(CP(SYS_32K),		(IEN  | PTD | DIS | M0)); /*SYS_32K*/ @@ -318,7 +313,7 @@ void set_muxconf_regs(void)  #ifdef CONFIG_GENERIC_MMC  int board_mmc_init(bd_t *bis)  { -	return omap_mmc_init(0); +	return omap_mmc_init(0, 0, 0);  }  #endif  |