diff options
author | Fabio Estevam <festevam@gmail.com> | 2012-06-02 21:53:27 (GMT) |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 12:07:28 (GMT) |
commit | b6a5fbf4bfc139d48b91e1e7b3ccbabb37727e80 (patch) | |
tree | 1cba5ae28a1e3f187fd3458c8505b38db785bd52 | |
parent | bd6f402b2af061bda27a68e7b7aa8cfc03a2f585 (diff) | |
download | u-boot-fsl-qoriq-b6a5fbf4bfc139d48b91e1e7b3ccbabb37727e80.tar.xz |
mx53ard: Remove CONFIG_SYS_I2C_SLAVE definition
According to include/i2c.h:
"/*
* Many boards/controllers/drivers don't support an I2C slave interface so
* provide a default slave address for them for use in common code. A real
* value for CONFIG_SYS_I2C_SLAVE should be defined for any board which does
* support a slave interface.
*/
#ifndef CONFIG_SYS_I2C_SLAVE
#define CONFIG_SYS_I2C_SLAVE 0xfe
#endif
"
As the mxc_i2c driver does not support slave mode, there is no need
to define CONFIG_SYS_I2C_SLAVE in i.MX board file.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
-rw-r--r-- | include/configs/mx53ard.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/mx53ard.h b/include/configs/mx53ard.h index 8da381f..ffc799c 100644 --- a/include/configs/mx53ard.h +++ b/include/configs/mx53ard.h @@ -52,7 +52,6 @@ #define CONFIG_I2C_MXC #define CONFIG_SYS_I2C_MX53_PORT2 #define CONFIG_SYS_I2C_SPEED 100000 -#define CONFIG_SYS_I2C_SLAVE 0xfe /* MMC Configs */ #define CONFIG_FSL_ESDHC |