ARM: rockchip: explicitly request exclusive reset control in smp code
Commit a53e35db70
("reset: Ensure drivers are explicit when requesting
reset lines") started to transition the reset control request API calls
to explicitly state whether the driver needs exclusive or shared reset
control behavior. Convert all drivers requesting exclusive resets to the
explicit API call so the temporary transition helpers can be removed.
No functional changes.
Cc: Heiko Stuebner <heiko@sntech.de>
Cc: linux-rockchip@lists.infradead.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
This commit is contained in:
parent
5771a8c088
commit
da45adf97f
|
@ -67,7 +67,7 @@ static struct reset_control *rockchip_get_core_reset(int cpu)
|
|||
else
|
||||
np = of_get_cpu_node(cpu, NULL);
|
||||
|
||||
return of_reset_control_get(np, NULL);
|
||||
return of_reset_control_get_exclusive(np, NULL);
|
||||
}
|
||||
|
||||
static int pmu_set_power_domain(int pd, bool on)
|
||||
|
|
Loading…
Reference in New Issue