diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2017-01-09 14:47:51 +0900 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2017-01-18 13:25:56 +0900 |
commit | a298712e948e473d9e61a3c75835becd0d3a2bf6 (patch) | |
tree | c37c20785b2e2e3e1c1c3181e6a6f8c2d8f58081 | |
parent | 816d8b500814b26df318d724628f6b88da9aadbf (diff) | |
download | u-boot-a298712e948e473d9e61a3c75835becd0d3a2bf6.zip u-boot-a298712e948e473d9e61a3c75835becd0d3a2bf6.tar.gz u-boot-a298712e948e473d9e61a3c75835becd0d3a2bf6.tar.bz2 |
i2c: s3c24x0: fix the compiler error for exynos4
If CONFIG_SYS_I2C_S3C24X0_SLAVE isn't defined, then complie error should
be occurred.
This patch is for preventing it.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r-- | drivers/i2c/s3c24x0_i2c.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/i2c/s3c24x0_i2c.c b/drivers/i2c/s3c24x0_i2c.c index 2ece9f4..363cd04 100644 --- a/drivers/i2c/s3c24x0_i2c.c +++ b/drivers/i2c/s3c24x0_i2c.c @@ -24,6 +24,12 @@ #include <i2c.h> #include "s3c24x0_i2c.h" +#ifndef CONFIG_SYS_I2C_S3C24X0_SLAVE +#define SYS_I2C_S3C24X0_SLAVE_ADDR 0 +#else +#define SYS_I2C_S3C24X0_SLAVE_ADDR CONFIG_SYS_I2C_S3C24X0_SLAVE +#endif + DECLARE_GLOBAL_DATA_PTR; /* @@ -87,7 +93,7 @@ static int s3c24x0_i2c_set_bus_speed(struct udevice *dev, unsigned int speed) i2c_bus->clock_frequency = speed; i2c_ch_init(i2c_bus->regs, i2c_bus->clock_frequency, - CONFIG_SYS_I2C_S3C24X0_SLAVE); + SYS_I2C_S3C24X0_SLAVE_ADDR); return 0; } |