lkml.org 
[lkml]   [2019]   [Jul]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH -next 31/34] ASoC: xlnx: 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.

    Reported-by: Hulk Robot <hulkci@huawei.com>
    Signed-off-by: YueHaibing <yuehaibing@huawei.com>
    ---
    sound/soc/xilinx/xlnx_i2s.c | 4 +---
    sound/soc/xilinx/xlnx_spdif.c | 3 +--
    2 files changed, 2 insertions(+), 5 deletions(-)

    diff --git a/sound/soc/xilinx/xlnx_i2s.c b/sound/soc/xilinx/xlnx_i2s.c
    index 8b35316..cc641e5 100644
    --- a/sound/soc/xilinx/xlnx_i2s.c
    +++ b/sound/soc/xilinx/xlnx_i2s.c
    @@ -95,7 +95,6 @@ MODULE_DEVICE_TABLE(of, xlnx_i2s_of_match);

    static int xlnx_i2s_probe(struct platform_device *pdev)
    {
    - struct resource *res;
    void __iomem *base;
    struct snd_soc_dai_driver *dai_drv;
    int ret;
    @@ -107,8 +106,7 @@ static int xlnx_i2s_probe(struct platform_device *pdev)
    if (!dai_drv)
    return -ENOMEM;

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

    diff --git a/sound/soc/xilinx/xlnx_spdif.c b/sound/soc/xilinx/xlnx_spdif.c
    index 3b9000f..e2ca087 100644
    --- a/sound/soc/xilinx/xlnx_spdif.c
    +++ b/sound/soc/xilinx/xlnx_spdif.c
    @@ -260,8 +260,7 @@ static int xlnx_spdif_probe(struct platform_device *pdev)
    return ret;
    }

    - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
    - ctx->base = devm_ioremap_resource(dev, res);
    + ctx->base = devm_platform_ioremap_resource(pdev, 0);
    if (IS_ERR(ctx->base)) {
    ret = PTR_ERR(ctx->base);
    goto clk_err;
    --
    2.7.4

    \
     
     \ /
      Last update: 2019-07-27 17:12    [W:6.128 / U:0.144 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site