[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <52F495A4.70400@metafoo.de>
Date: Fri, 07 Feb 2014 09:13:24 +0100
From: Lars-Peter Clausen <lars@...afoo.de>
To: Jingoo Han <jg1.han@...sung.com>
CC: 'Andrew Morton' <akpm@...ux-foundation.org>,
linux-kernel@...r.kernel.org,
'Alessandro Zummo' <a.zummo@...ertech.it>,
rtc-linux@...glegroups.com
Subject: Re: [PATCH 3/4] rtc: rtc-jz4740: Use devm_ioremap_resource()
On 02/07/2014 08:58 AM, Jingoo Han wrote:
[...]
> - rtc->base = devm_ioremap_nocache(&pdev->dev, rtc->mem->start,
> - resource_size(rtc->mem));
> - if (!rtc->base) {
> - dev_err(&pdev->dev, "Failed to ioremap mmio memory\n");
> - return -EBUSY;
> - }
> + mem->flags &= ~IORESOURCE_CACHEABLE;
You shouldn't be modifying the resource, strictly speaking it is not owned
by the device. And IORESOURCE_CACHEABLE is never set for this device anyway.
> + rtc->base = devm_ioremap_resource(&pdev->dev, mem);
> + if (IS_ERR(rtc->base))
> + return PTR_ERR(rtc->base);
>
> spin_lock_init(&rtc->lock);
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists