diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-10 08:33:43 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2023-08-14 18:09:44 +0200 |
commit | 8f4bc41800321f42705bef92d8a28f20626ba660 (patch) | |
tree | d2b68844c3548915e529f92bd6120b600006ecb1 /drivers/i2c/busses/i2c-mlxbf.c | |
parent | i2c: brcmstb: Convert to devm_platform_ioremap_resource() (diff) | |
download | linux-8f4bc41800321f42705bef92d8a28f20626ba660.tar.xz linux-8f4bc41800321f42705bef92d8a28f20626ba660.zip |
i2c: mlxbf: Use devm_platform_get_and_ioremap_resource()
Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Reviewed-by: Andi Shyti <andi.shyti@kernel.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses/i2c-mlxbf.c')
-rw-r--r-- | drivers/i2c/busses/i2c-mlxbf.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/i2c/busses/i2c-mlxbf.c b/drivers/i2c/busses/i2c-mlxbf.c index bf2eaeac3e7c..b3a73921ab69 100644 --- a/drivers/i2c/busses/i2c-mlxbf.c +++ b/drivers/i2c/busses/i2c-mlxbf.c @@ -1080,13 +1080,7 @@ static int mlxbf_i2c_init_resource(struct platform_device *pdev, if (!tmp_res) return -ENOMEM; - tmp_res->params = platform_get_resource(pdev, IORESOURCE_MEM, type); - if (!tmp_res->params) { - devm_kfree(dev, tmp_res); - return -EIO; - } - - tmp_res->io = devm_ioremap_resource(dev, tmp_res->params); + tmp_res->io = devm_platform_get_and_ioremap_resource(pdev, type, &tmp_res->params); if (IS_ERR(tmp_res->io)) { devm_kfree(dev, tmp_res); return PTR_ERR(tmp_res->io); |