lkml.org 
[lkml]   [2020]   [Apr]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v2 06/24] i2c: xlp9xx: convert to devm_platform_ioremap_resource
    Date
    use devm_platform_ioremap_resource() to simplify code, which
    contains platform_get_resource and devm_ioremap_resource.

    Acked-by: Robert Richter <rrichter@marvell.com>
    Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
    ---
    v1 -> v2:
    - no changed and thanks for Robert's review.

    drivers/i2c/busses/i2c-xlp9xx.c | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/drivers/i2c/busses/i2c-xlp9xx.c b/drivers/i2c/busses/i2c-xlp9xx.c
    index 8a873975cf12..beb2bb6905d6 100644
    --- a/drivers/i2c/busses/i2c-xlp9xx.c
    +++ b/drivers/i2c/busses/i2c-xlp9xx.c
    @@ -504,15 +504,13 @@ static int xlp9xx_i2c_smbus_setup(struct xlp9xx_i2c_dev *priv,
    static int xlp9xx_i2c_probe(struct platform_device *pdev)
    {
    struct xlp9xx_i2c_dev *priv;
    - struct resource *res;
    int err = 0;

    priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
    if (!priv)
    return -ENOMEM;

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

    --
    2.25.0
    \
     
     \ /
      Last update: 2020-04-08 20:24    [W:5.062 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site