Commit cfefb762 authored by Jean-Christophe Dubois's avatar Jean-Christophe Dubois Committed by Shawn Guo

ARM: imx6: fix cleanup path in imx6q_suspend_init()

The wrong pointer is passed to the ioumap function in the cleanup path
Signed-off-by: default avatarJean-Christophe Dubois <jcd@tribudubois.net>
Reviewed-by: default avatarLucas Stach <l.stach@pengutronix.de>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 92e963f5
......@@ -561,13 +561,13 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
goto put_node;
pl310_cache_map_failed:
iounmap(&pm_info->gpc_base.vbase);
iounmap(pm_info->gpc_base.vbase);
gpc_map_failed:
iounmap(&pm_info->iomuxc_base.vbase);
iounmap(pm_info->iomuxc_base.vbase);
iomuxc_map_failed:
iounmap(&pm_info->src_base.vbase);
iounmap(pm_info->src_base.vbase);
src_map_failed:
iounmap(&pm_info->mmdc_base.vbase);
iounmap(pm_info->mmdc_base.vbase);
put_node:
of_node_put(node);
......
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