Skip to content

Commit 0a4a8c0

Browse files
bbkzzgregkh
authored andcommitted
nvmem: stm32-romem: 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> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20230823132744.350618-8-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 94904db commit 0a4a8c0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/nvmem/stm32-romem.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,7 @@ static int stm32_romem_probe(struct platform_device *pdev)
196196
if (!priv)
197197
return -ENOMEM;
198198

199-
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
200-
priv->base = devm_ioremap_resource(dev, res);
199+
priv->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
201200
if (IS_ERR(priv->base))
202201
return PTR_ERR(priv->base);
203202

0 commit comments

Comments
 (0)