From: Russell King Date: Fri, 19 Aug 2016 15:34:45 +0000 (+0100) Subject: ARM: sa1100: clear reset status prior to reboot X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~1855 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e8fcad03ec85905001c19b8564fa2d531beeecd9;p=mirror_ubuntu-artful-kernel.git ARM: sa1100: clear reset status prior to reboot BugLink: http://bugs.launchpad.net/bugs/1631468 commit da60626e7d02a4f385cae80e450afc8b07035368 upstream. Clear the current reset status prior to rebooting the platform. This adds the bit missing from 04fef228fb00 ("[ARM] pxa: introduce reset_status and clear_reset_status for driver's usage"). Fixes: 04fef228fb00 ("[ARM] pxa: introduce reset_status and clear_reset_status for driver's usage") Signed-off-by: Russell King Signed-off-by: Greg Kroah-Hartman Signed-off-by: Tim Gardner --- diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index 2e2c35b8e0d4..3e09beddb6e8 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c @@ -34,6 +34,7 @@ #include #include +#include #include "generic.h" #include @@ -95,6 +96,8 @@ static void sa1100_power_off(void) void sa11x0_restart(enum reboot_mode mode, const char *cmd) { + clear_reset_status(RESET_STATUS_ALL); + if (mode == REBOOT_SOFT) { /* Jump into ROM at address 0 */ soft_restart(0);