Commit cb54751d authored by Bastian Hecht's avatar Bastian Hecht Committed by David Woodhouse

mtd: sh_flctl: Add missing iounmap()

Add the unmapping for the error case and for the driver removal.
Signed-off-by: default avatarBastian Hecht <hechtb@gmail.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 271b874b
...@@ -918,6 +918,7 @@ static int __devinit flctl_probe(struct platform_device *pdev) ...@@ -918,6 +918,7 @@ static int __devinit flctl_probe(struct platform_device *pdev)
err_chip: err_chip:
pm_runtime_disable(&pdev->dev); pm_runtime_disable(&pdev->dev);
iounmap(flctl->reg);
err_iomap: err_iomap:
kfree(flctl); kfree(flctl);
return ret; return ret;
...@@ -929,6 +930,7 @@ static int __devexit flctl_remove(struct platform_device *pdev) ...@@ -929,6 +930,7 @@ static int __devexit flctl_remove(struct platform_device *pdev)
nand_release(&flctl->mtd); nand_release(&flctl->mtd);
pm_runtime_disable(&pdev->dev); pm_runtime_disable(&pdev->dev);
iounmap(flctl->reg);
kfree(flctl); kfree(flctl);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment