Skip to content

Commit cf26790

Browse files
Yang LiUlf Hansson
authored andcommitted
mmc: usdhi6rol0: Use devm_platform_get_and_ioremap_resource()
According to commit 890cc39 ("drivers: provide 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: Yang Li <yang.lee@linux.alibaba.com> Link: https://lore.kernel.org/r/20230315055355.66733-1-yang.lee@linux.alibaba.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
1 parent 288b7ba commit cf26790

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/mmc/host/usdhi6rol0.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1790,8 +1790,7 @@ static int usdhi6_probe(struct platform_device *pdev)
17901790

17911791
host->pins_uhs = pinctrl_lookup_state(host->pinctrl, "state_uhs");
17921792

1793-
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1794-
host->base = devm_ioremap_resource(dev, res);
1793+
host->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
17951794
if (IS_ERR(host->base)) {
17961795
ret = PTR_ERR(host->base);
17971796
goto e_free_mmc;

0 commit comments

Comments
 (0)