Skip to content

Commit cfadd0e

Browse files
bbkzzgregkh
authored andcommitted
nvmem: brcm_nvram: 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-4-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9ccfcbe commit cfadd0e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/nvmem/brcm_nvram.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,7 @@ static int brcm_nvram_probe(struct platform_device *pdev)
159159
return -ENOMEM;
160160
priv->dev = dev;
161161

162-
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
163-
priv->base = devm_ioremap_resource(dev, res);
162+
priv->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
164163
if (IS_ERR(priv->base))
165164
return PTR_ERR(priv->base);
166165

0 commit comments

Comments
 (0)