diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-21 05:08:09 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-21 05:08:09 +0300 |
commit | ed313489badef16d700f5a3be50e8fd8f8294bc8 (patch) | |
tree | a42627a517aad432f0ce19b670003439b7c5a15b /arch/arm/mach-pxa/reset.c | |
parent | 13d428afc007fcfcd6deeb215618f54cf9c0cae6 (diff) | |
parent | 28105fda1ecadfa7c827b22d323c169f19dc04b0 (diff) | |
download | linux-ed313489badef16d700f5a3be50e8fd8f8294bc8.tar.xz |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 5330/1: mach-pxa: Fixup reset for systems using reboot=cold or other strings
[ARM] pxa: fix incorrect PCMCIA PSKTSEL pin configuration for spitz
[ARM] pxa: fix I2C controller device being registered twice on Akita
pxafb: only initialize the smart panel thread when dealing with a smartpanel
pxafb: introduce LCD_TYPE_MASK and use it.
Diffstat (limited to 'arch/arm/mach-pxa/reset.c')
-rw-r--r-- | arch/arm/mach-pxa/reset.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/reset.c b/arch/arm/mach-pxa/reset.c index 1b2af575c40f..00b2dc2a1074 100644 --- a/arch/arm/mach-pxa/reset.c +++ b/arch/arm/mach-pxa/reset.c @@ -90,12 +90,13 @@ void arch_reset(char mode) /* Jump into ROM at address 0 */ cpu_reset(0); break; - case 'h': - do_hw_reset(); - break; case 'g': do_gpio_reset(); break; + case 'h': + default: + do_hw_reset(); + break; } } |