diff options
author | Alban Bedel <albeu@free.fr> | 2016-01-26 03:39:30 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-05-13 08:01:37 -0400 |
commit | 81424d0ad0d41f05049aac6d4959d17a5a3c69c8 (patch) | |
tree | 3a3143130f250f88f3731be32d7a88534a0565e7 | |
parent | b3f0a250d6eda645cee719cc11ea70e28f62145c (diff) |
MIPS: ath79: Use the reset controller to restart OF machines
Don't set _machine_restart() on OF machines as the reset driver
now provides a system restart handler.
Signed-off-by: Alban Bedel <albeu@free.fr>
Cc: Felix Fietkau <nbd@openwrt.org>
Cc: Antony Pavlov <antonynpavlov@gmail.com>
Cc: Gabor Juhos <juhosg@openwrt.org>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/12235/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/ath79/setup.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index 906ddace159a..01808e85e263 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c | |||
@@ -213,10 +213,11 @@ void __init plat_mem_setup(void) | |||
213 | ath79_detect_sys_type(); | 213 | ath79_detect_sys_type(); |
214 | ath79_ddr_ctrl_init(); | 214 | ath79_ddr_ctrl_init(); |
215 | 215 | ||
216 | if (mips_machtype != ATH79_MACH_GENERIC_OF) | 216 | if (mips_machtype != ATH79_MACH_GENERIC_OF) { |
217 | detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX); | 217 | detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX); |
218 | 218 | /* OF machines should use the reset driver */ | |
219 | _machine_restart = ath79_restart; | 219 | _machine_restart = ath79_restart; |
220 | } | ||
220 | _machine_halt = ath79_halt; | 221 | _machine_halt = ath79_halt; |
221 | pm_power_off = ath79_halt; | 222 | pm_power_off = ath79_halt; |
222 | } | 223 | } |