Commit 23bec172 authored by Sebastian Andrzej Siewior's avatar Sebastian Andrzej Siewior Committed by Shawn Guo

ARM i.MX6q: unmap memory mapped at imx6q_opp_check_speed_grading()

imx6q_opp_check_speed_grading() remaps memory to the base variable and
never unmaps it. I can't see how this can be of any use later so here I
unmap it.
Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
parent c2053895
...@@ -329,7 +329,7 @@ static void __init imx6q_opp_check_speed_grading(struct device *cpu_dev) ...@@ -329,7 +329,7 @@ static void __init imx6q_opp_check_speed_grading(struct device *cpu_dev)
if (dev_pm_opp_disable(cpu_dev, 852000000)) if (dev_pm_opp_disable(cpu_dev, 852000000))
pr_warn("failed to disable 852 MHz OPP\n"); pr_warn("failed to disable 852 MHz OPP\n");
} }
iounmap(base);
put_node: put_node:
of_node_put(np); of_node_put(np);
} }
......
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