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: Laurent Navet <laurent.navet@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ae8a35aef4
commit
21b066f19a
1 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue