diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2017-07-19 17:25:05 +0200 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2017-07-20 22:26:26 +0200 |
commit | da45adf97f57a561fc290e7cdd3a3dcb184cc88e (patch) | |
tree | 9243c234328adbfb8f5e39e099aeecc32287e47c /arch/arm/mach-rockchip | |
parent | 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 (diff) |
ARM: rockchip: explicitly request exclusive reset control in smp code
Commit a53e35db70d1 ("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>
Diffstat (limited to 'arch/arm/mach-rockchip')
-rw-r--r-- | arch/arm/mach-rockchip/platsmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c index 3abafdbdd7f4..420ba6765223 100644 --- a/arch/arm/mach-rockchip/platsmp.c +++ b/arch/arm/mach-rockchip/platsmp.c @@ -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) |