Commit caa3af25 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

rtc: rtc-vt8500: use devm_ioremap_resource()

Use devm_ioremap_resource() in order to make the code simpler, and move
'struct resource *res' from 'struct vt8500_rtc' to vt8500_rtc_probe()
because the 'res' variable is used only in vt8500_rtc_probe().
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Cc: Tony Prisk <linux@prisktech.co.nz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1e6789f6
...@@ -79,7 +79,6 @@ ...@@ -79,7 +79,6 @@
struct vt8500_rtc { struct vt8500_rtc {
void __iomem *regbase; void __iomem *regbase;
struct resource *res;
int irq_alarm; int irq_alarm;
struct rtc_device *rtc; struct rtc_device *rtc;
spinlock_t lock; /* Protects this structure */ spinlock_t lock; /* Protects this structure */
...@@ -209,6 +208,7 @@ static const struct rtc_class_ops vt8500_rtc_ops = { ...@@ -209,6 +208,7 @@ static const struct rtc_class_ops vt8500_rtc_ops = {
static int vt8500_rtc_probe(struct platform_device *pdev) static int vt8500_rtc_probe(struct platform_device *pdev)
{ {
struct vt8500_rtc *vt8500_rtc; struct vt8500_rtc *vt8500_rtc;
struct resource *res;
int ret; int ret;
vt8500_rtc = devm_kzalloc(&pdev->dev, vt8500_rtc = devm_kzalloc(&pdev->dev,
...@@ -219,34 +219,16 @@ static int vt8500_rtc_probe(struct platform_device *pdev) ...@@ -219,34 +219,16 @@ static int vt8500_rtc_probe(struct platform_device *pdev)
spin_lock_init(&vt8500_rtc->lock); spin_lock_init(&vt8500_rtc->lock);
platform_set_drvdata(pdev, vt8500_rtc); platform_set_drvdata(pdev, vt8500_rtc);
vt8500_rtc->res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!vt8500_rtc->res) {
dev_err(&pdev->dev, "No I/O memory resource defined\n");
return -ENXIO;
}
vt8500_rtc->irq_alarm = platform_get_irq(pdev, 0); vt8500_rtc->irq_alarm = platform_get_irq(pdev, 0);
if (vt8500_rtc->irq_alarm < 0) { if (vt8500_rtc->irq_alarm < 0) {
dev_err(&pdev->dev, "No alarm IRQ resource defined\n"); dev_err(&pdev->dev, "No alarm IRQ resource defined\n");
return vt8500_rtc->irq_alarm; return vt8500_rtc->irq_alarm;
} }
vt8500_rtc->res = devm_request_mem_region(&pdev->dev, res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
vt8500_rtc->res->start, vt8500_rtc->regbase = devm_ioremap_resource(&pdev->dev, res);
resource_size(vt8500_rtc->res), if (IS_ERR(vt8500_rtc->regbase))
"vt8500-rtc"); return PTR_ERR(vt8500_rtc->regbase);
if (vt8500_rtc->res == NULL) {
dev_err(&pdev->dev, "failed to request I/O memory\n");
return -EBUSY;
}
vt8500_rtc->regbase = devm_ioremap(&pdev->dev, vt8500_rtc->res->start,
resource_size(vt8500_rtc->res));
if (!vt8500_rtc->regbase) {
dev_err(&pdev->dev, "Unable to map RTC I/O memory\n");
ret = -EBUSY;
goto err_return;
}
/* Enable RTC and set it to 24-hour mode */ /* Enable RTC and set it to 24-hour mode */
writel(VT8500_RTC_CR_ENABLE, writel(VT8500_RTC_CR_ENABLE,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment