rtc: s5m: convert to i2c_new_dummy_device
[linux-2.6-microblaze.git] / drivers / rtc / rtc-s5m.c
index c7f1bf8..eb9dde4 100644 (file)
@@ -760,10 +760,10 @@ static int s5m_rtc_probe(struct platform_device *pdev)
                return -ENODEV;
        }
 
-       info->i2c = i2c_new_dummy(s5m87xx->i2c->adapter, RTC_I2C_ADDR);
-       if (!info->i2c) {
+       info->i2c = i2c_new_dummy_device(s5m87xx->i2c->adapter, RTC_I2C_ADDR);
+       if (IS_ERR(info->i2c)) {
                dev_err(&pdev->dev, "Failed to allocate I2C for RTC\n");
-               return -ENODEV;
+               return PTR_ERR(info->i2c);
        }
 
        info->regmap = devm_regmap_init_i2c(info->i2c, regmap_cfg);