diff options
| author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-03-08 04:47:10 +0000 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2013-03-20 11:40:58 +0100 | 
| commit | a49db3df76619022ddbf03ea16d715cebd57cf1b (patch) | |
| tree | d50715b3e9102e09186b470d7d0cdbc3b4a4a5f9 | |
| parent | 982a3c410e21f2f7e5fee22c7fd788fc7ef7fdf9 (diff) | |
| download | olio-uboot-2014.01-a49db3df76619022ddbf03ea16d715cebd57cf1b.tar.xz olio-uboot-2014.01-a49db3df76619022ddbf03ea16d715cebd57cf1b.zip | |
mx28evk: Disable CONFIG_CMD_I2C
When loading a Freescale 2.6.35 on a mx28evk the following issue is seen:
sgtl5000_hw_read: read reg error : Reg 0x00
Device with ID register 0 is not a SGTL5000
Disabling CONFIG_CMD_I2C makes the sgtl5000 probe to succeed.
Mainline kernel does not show this problem.
Until the real cause is not identified, disable 'CONFIG_CMD_I2C' for the
time being.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
| -rw-r--r-- | include/configs/mx28evk.h | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h index c5d57896f..428fe868c 100644 --- a/include/configs/mx28evk.h +++ b/include/configs/mx28evk.h @@ -62,7 +62,6 @@  #define CONFIG_CMD_SPI  #define CONFIG_CMD_USB  #define CONFIG_CMD_BOOTZ -#define CONFIG_CMD_I2C  /* Memory configurations */  #define CONFIG_NR_DRAM_BANKS		1		/* 1 bank of DRAM */ |