Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21b066f1 authored by Laurent Navet's avatar Laurent Navet Committed by Greg Kroah-Hartman
Browse files

drivers: misc: use devm_ioremap_resource()



Replace a call to deprecated devm_request_and_ioremap by devm_ioremap_resource.

Found with coccicheck and this semantic patch:
 scripts/coccinelle/api/devm_request_and_ioremap.cocci.

Signed-off-by: default avatarLaurent Navet <laurent.navet@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ae8a35ae
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -50,9 +50,10 @@ static int sram_probe(struct platform_device *pdev)

	size = resource_size(res);

	virt_base = devm_request_and_ioremap(&pdev->dev, res);
	if (!virt_base)
		return -EADDRNOTAVAIL;
	virt_base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(virt_base))
		return PTR_ERR(virt_base);


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