From: Paul Kocialkowski Date: Wed, 15 Jul 2015 14:02:22 +0000 (+0200) Subject: siemens-am33x-common: Hardcoded value instead of non-included define X-Git-Tag: v2015.10-rc1~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cb81b6bcd446952e83ef65279d01c3933ba0baa;p=platform%2Fkernel%2Fu-boot.git siemens-am33x-common: Hardcoded value instead of non-included define The config file for the siemens-am33x-common was using OMAP_I2C_STANDARD, which is defined in a header that is not included in the config header. In most cases, it was being included by the code using CONFIG_SYS_OMAP24_I2C_SPEED, but it might not always be the case. In particular, when introducing I2C SPL support in omap-common's boot-common.c, the header is missing and including it breaks other devices. Signed-off-by: Paul Kocialkowski --- diff --git a/include/configs/siemens-am33x-common.h b/include/configs/siemens-am33x-common.h index f33f9b4..f7bef70 100644 --- a/include/configs/siemens-am33x-common.h +++ b/include/configs/siemens-am33x-common.h @@ -133,7 +133,7 @@ #define CONFIG_I2C #define CONFIG_CMD_I2C #define CONFIG_SYS_I2C -#define CONFIG_SYS_OMAP24_I2C_SPEED OMAP_I2C_STANDARD +#define CONFIG_SYS_OMAP24_I2C_SPEED 100000 #define CONFIG_SYS_OMAP24_I2C_SLAVE 1 #define CONFIG_SYS_I2C_OMAP24XX