rtc: rtc-m48t59: 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:08 -07:00 committed by Linus Torvalds
parent 073bf42460
commit 19b8d8875f
1 changed files with 17 additions and 36 deletions

View File

@ -409,7 +409,8 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
} else if (res->flags & IORESOURCE_MEM) { } else if (res->flags & IORESOURCE_MEM) {
/* we are memory-mapped */ /* we are memory-mapped */
if (!pdata) { if (!pdata) {
pdata = kzalloc(sizeof(*pdata), GFP_KERNEL); pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata),
GFP_KERNEL);
if (!pdata) if (!pdata)
return -ENOMEM; return -ENOMEM;
/* Ensure we only kmalloc platform data once */ /* Ensure we only kmalloc platform data once */
@ -425,7 +426,7 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
pdata->read_byte = m48t59_mem_readb; pdata->read_byte = m48t59_mem_readb;
} }
m48t59 = kzalloc(sizeof(*m48t59), GFP_KERNEL); m48t59 = devm_kzalloc(&pdev->dev, sizeof(*m48t59), GFP_KERNEL);
if (!m48t59) if (!m48t59)
return -ENOMEM; return -ENOMEM;
@ -433,9 +434,10 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
if (!m48t59->ioaddr) { if (!m48t59->ioaddr) {
/* ioaddr not mapped externally */ /* ioaddr not mapped externally */
m48t59->ioaddr = ioremap(res->start, resource_size(res)); m48t59->ioaddr = devm_ioremap(&pdev->dev, res->start,
resource_size(res));
if (!m48t59->ioaddr) if (!m48t59->ioaddr)
goto out; return ret;
} }
/* Try to get irq number. We also can work in /* Try to get irq number. We also can work in
@ -446,10 +448,11 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
m48t59->irq = NO_IRQ; m48t59->irq = NO_IRQ;
if (m48t59->irq != NO_IRQ) { if (m48t59->irq != NO_IRQ) {
ret = request_irq(m48t59->irq, m48t59_rtc_interrupt, ret = devm_request_irq(&pdev->dev, m48t59->irq,
IRQF_SHARED, "rtc-m48t59", &pdev->dev); m48t59_rtc_interrupt, IRQF_SHARED,
"rtc-m48t59", &pdev->dev);
if (ret) if (ret)
goto out; return ret;
} }
switch (pdata->type) { switch (pdata->type) {
case M48T59RTC_TYPE_M48T59: case M48T59RTC_TYPE_M48T59:
@ -469,51 +472,29 @@ static int m48t59_rtc_probe(struct platform_device *pdev)
break; break;
default: default:
dev_err(&pdev->dev, "Unknown RTC type\n"); dev_err(&pdev->dev, "Unknown RTC type\n");
ret = -ENODEV; return -ENODEV;
goto out;
} }
spin_lock_init(&m48t59->lock); spin_lock_init(&m48t59->lock);
platform_set_drvdata(pdev, m48t59); platform_set_drvdata(pdev, m48t59);
m48t59->rtc = rtc_device_register(name, &pdev->dev, ops, THIS_MODULE); m48t59->rtc = devm_rtc_device_register(&pdev->dev, name, ops,
if (IS_ERR(m48t59->rtc)) { THIS_MODULE);
ret = PTR_ERR(m48t59->rtc); if (IS_ERR(m48t59->rtc))
goto out; return PTR_ERR(m48t59->rtc);
}
m48t59_nvram_attr.size = pdata->offset; m48t59_nvram_attr.size = pdata->offset;
ret = sysfs_create_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr); ret = sysfs_create_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr);
if (ret) { if (ret)
rtc_device_unregister(m48t59->rtc); return ret;
goto out;
}
return 0; return 0;
out:
if (m48t59->irq != NO_IRQ)
free_irq(m48t59->irq, &pdev->dev);
if (m48t59->ioaddr)
iounmap(m48t59->ioaddr);
kfree(m48t59);
return ret;
} }
static int m48t59_rtc_remove(struct platform_device *pdev) static int m48t59_rtc_remove(struct platform_device *pdev)
{ {
struct m48t59_private *m48t59 = platform_get_drvdata(pdev);
struct m48t59_plat_data *pdata = pdev->dev.platform_data;
sysfs_remove_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr); sysfs_remove_bin_file(&pdev->dev.kobj, &m48t59_nvram_attr);
if (!IS_ERR(m48t59->rtc))
rtc_device_unregister(m48t59->rtc);
if (m48t59->ioaddr && !pdata->ioaddr)
iounmap(m48t59->ioaddr);
if (m48t59->irq != NO_IRQ)
free_irq(m48t59->irq, &pdev->dev);
kfree(m48t59);
return 0; return 0;
} }