rtc: rtc-ds1307: use devm_*() functions

Use devm_*() functions to make cleanup paths simpler.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Jingoo Han 2013-07-03 15:07:05 -07:00 committed by Linus Torvalds
parent 812f147853
commit edca66d2ce
1 changed files with 17 additions and 26 deletions

View File

@ -683,7 +683,7 @@ static int ds1307_probe(struct i2c_client *client,
&& !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) && !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK))
return -EIO; return -EIO;
ds1307 = kzalloc(sizeof(struct ds1307), GFP_KERNEL); ds1307 = devm_kzalloc(&client->dev, sizeof(struct ds1307), GFP_KERNEL);
if (!ds1307) if (!ds1307)
return -ENOMEM; return -ENOMEM;
@ -715,7 +715,7 @@ static int ds1307_probe(struct i2c_client *client,
if (tmp != 2) { if (tmp != 2) {
dev_dbg(&client->dev, "read error %d\n", tmp); dev_dbg(&client->dev, "read error %d\n", tmp);
err = -EIO; err = -EIO;
goto exit_free; goto exit;
} }
/* oscillator off? turn it on, so clock can tick. */ /* oscillator off? turn it on, so clock can tick. */
@ -754,7 +754,7 @@ static int ds1307_probe(struct i2c_client *client,
if (tmp != 2) { if (tmp != 2) {
dev_dbg(&client->dev, "read error %d\n", tmp); dev_dbg(&client->dev, "read error %d\n", tmp);
err = -EIO; err = -EIO;
goto exit_free; goto exit;
} }
/* oscillator off? turn it on, so clock can tick. */ /* oscillator off? turn it on, so clock can tick. */
@ -798,7 +798,7 @@ static int ds1307_probe(struct i2c_client *client,
if (tmp != 2) { if (tmp != 2) {
dev_dbg(&client->dev, "read error %d\n", tmp); dev_dbg(&client->dev, "read error %d\n", tmp);
err = -EIO; err = -EIO;
goto exit_free; goto exit;
} }
/* correct hour */ /* correct hour */
@ -826,7 +826,7 @@ read_rtc:
if (tmp != 8) { if (tmp != 8) {
dev_dbg(&client->dev, "read error %d\n", tmp); dev_dbg(&client->dev, "read error %d\n", tmp);
err = -EIO; err = -EIO;
goto exit_free; goto exit;
} }
/* /*
@ -868,7 +868,7 @@ read_rtc:
if (tmp < 0) { if (tmp < 0) {
dev_dbg(&client->dev, "read error %d\n", tmp); dev_dbg(&client->dev, "read error %d\n", tmp);
err = -EIO; err = -EIO;
goto exit_free; goto exit;
} }
/* oscillator fault? clear flag, and warn */ /* oscillator fault? clear flag, and warn */
@ -927,13 +927,13 @@ read_rtc:
bin2bcd(tmp)); bin2bcd(tmp));
} }
ds1307->rtc = rtc_device_register(client->name, &client->dev, ds1307->rtc = devm_rtc_device_register(&client->dev, client->name,
&ds13xx_rtc_ops, THIS_MODULE); &ds13xx_rtc_ops, THIS_MODULE);
if (IS_ERR(ds1307->rtc)) { if (IS_ERR(ds1307->rtc)) {
err = PTR_ERR(ds1307->rtc); err = PTR_ERR(ds1307->rtc);
dev_err(&client->dev, dev_err(&client->dev,
"unable to register the class device\n"); "unable to register the class device\n");
goto exit_free; goto exit;
} }
if (want_irq) { if (want_irq) {
@ -942,7 +942,7 @@ read_rtc:
if (err) { if (err) {
dev_err(&client->dev, dev_err(&client->dev,
"unable to request IRQ!\n"); "unable to request IRQ!\n");
goto exit_irq; goto exit;
} }
device_set_wakeup_capable(&client->dev, 1); device_set_wakeup_capable(&client->dev, 1);
@ -951,11 +951,12 @@ read_rtc:
} }
if (chip->nvram_size) { if (chip->nvram_size) {
ds1307->nvram = kzalloc(sizeof(struct bin_attribute), ds1307->nvram = devm_kzalloc(&client->dev,
GFP_KERNEL); sizeof(struct bin_attribute),
GFP_KERNEL);
if (!ds1307->nvram) { if (!ds1307->nvram) {
err = -ENOMEM; err = -ENOMEM;
goto exit_nvram; goto exit;
} }
ds1307->nvram->attr.name = "nvram"; ds1307->nvram->attr.name = "nvram";
ds1307->nvram->attr.mode = S_IRUGO | S_IWUSR; ds1307->nvram->attr.mode = S_IRUGO | S_IWUSR;
@ -965,21 +966,15 @@ read_rtc:
ds1307->nvram->size = chip->nvram_size; ds1307->nvram->size = chip->nvram_size;
ds1307->nvram_offset = chip->nvram_offset; ds1307->nvram_offset = chip->nvram_offset;
err = sysfs_create_bin_file(&client->dev.kobj, ds1307->nvram); err = sysfs_create_bin_file(&client->dev.kobj, ds1307->nvram);
if (err) { if (err)
kfree(ds1307->nvram); goto exit;
goto exit_nvram;
}
set_bit(HAS_NVRAM, &ds1307->flags); set_bit(HAS_NVRAM, &ds1307->flags);
dev_info(&client->dev, "%zu bytes nvram\n", ds1307->nvram->size); dev_info(&client->dev, "%zu bytes nvram\n", ds1307->nvram->size);
} }
return 0; return 0;
exit_nvram: exit:
exit_irq:
rtc_device_unregister(ds1307->rtc);
exit_free:
kfree(ds1307);
return err; return err;
} }
@ -992,13 +987,9 @@ static int ds1307_remove(struct i2c_client *client)
cancel_work_sync(&ds1307->work); cancel_work_sync(&ds1307->work);
} }
if (test_and_clear_bit(HAS_NVRAM, &ds1307->flags)) { if (test_and_clear_bit(HAS_NVRAM, &ds1307->flags))
sysfs_remove_bin_file(&client->dev.kobj, ds1307->nvram); sysfs_remove_bin_file(&client->dev.kobj, ds1307->nvram);
kfree(ds1307->nvram);
}
rtc_device_unregister(ds1307->rtc);
kfree(ds1307);
return 0; return 0;
} }