[ARM] 5330/1: mach-pxa: Fixup reset for systems using reboot=cold or other strings

This patch makes do_hw_reset the default reboot behavior when nothing
else matches. This restores reboot functionality on gumstix basix
devices where reboot=cold is the default boot argument.

Signed-off-by: Jaya Kumar <jayakumar.lkml@gmail.com>
Acked-by: Eric Miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Jaya Kumar and committed by Russell King 28105fda 12a8ab15

+4 -3
+4 -3
arch/arm/mach-pxa/reset.c
··· 90 90 /* Jump into ROM at address 0 */ 91 91 cpu_reset(0); 92 92 break; 93 - case 'h': 94 - do_hw_reset(); 95 - break; 96 93 case 'g': 97 94 do_gpio_reset(); 95 + break; 96 + case 'h': 97 + default: 98 + do_hw_reset(); 98 99 break; 99 100 } 100 101 }