i2c: s3c24x0: fix the compiler error for exynos4
[oweals/u-boot.git] / drivers / i2c / s3c24x0_i2c.c
index 2ece9f419591be3459b392442e316479cbce1372..363cd04e4e2692899b63bad0bbe46613861b6371 100644 (file)
 #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;
 }