lkml.org 
[lkml]   [2019]   [Oct]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH -next 19/34] rtc: omap: use devm_platform_ioremap_resource() to simplify code
    Date
    Use devm_platform_ioremap_resource() to simplify the code a bit.
    This is detected by coccinelle.

    Signed-off-by: YueHaibing <yuehaibing@huawei.com>
    ---
    drivers/rtc/rtc-omap.c | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/drivers/rtc/rtc-omap.c b/drivers/rtc/rtc-omap.c
    index a2941c8..988a4df 100644
    --- a/drivers/rtc/rtc-omap.c
    +++ b/drivers/rtc/rtc-omap.c
    @@ -727,7 +727,6 @@ static struct nvmem_config omap_rtc_nvmem_config = {
    static int omap_rtc_probe(struct platform_device *pdev)
    {
    struct omap_rtc *rtc;
    - struct resource *res;
    u8 reg, mask, new_ctrl;
    const struct platform_device_id *id_entry;
    const struct of_device_id *of_id;
    @@ -764,8 +763,7 @@ static int omap_rtc_probe(struct platform_device *pdev)
    if (!IS_ERR(rtc->clk))
    clk_prepare_enable(rtc->clk);

    - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
    - rtc->base = devm_ioremap_resource(&pdev->dev, res);
    + rtc->base = devm_platform_ioremap_resource(pdev, 0);
    if (IS_ERR(rtc->base)) {
    clk_disable_unprepare(rtc->clk);
    return PTR_ERR(rtc->base);
    --
    2.7.4

    \
     
     \ /
      Last update: 2019-10-06 12:33    [W:3.510 / U:0.248 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site