diff options
author | Mike Frysinger <michael.frysinger@analog.com> | 2007-05-21 18:09:29 +0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-21 09:50:23 -0700 |
commit | ac57ac39e4f92f327451ad4084c4d5f60bcfa999 (patch) | |
tree | a92b2095915ae4e59eff01d80fc4f88df689d984 /arch/blackfin/mach-bf561 | |
parent | 5f9a3e899897201a49965cd9e1bb2570b3bde2b5 (diff) |
Blackfin arch: dont clear the bit that tells coreb to start booting
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/blackfin/mach-bf561')
-rw-r--r-- | arch/blackfin/mach-bf561/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf561/head.S b/arch/blackfin/mach-bf561/head.S index 9c8e6885f4e7..ad9187a866a5 100644 --- a/arch/blackfin/mach-bf561/head.S +++ b/arch/blackfin/mach-bf561/head.S @@ -431,7 +431,7 @@ ENTRY(_bfin_reset) /* make sure SYSCR is set to use BMODE */ P0.h = hi(SICA_SYSCR); P0.l = lo(SICA_SYSCR); - R0.l = 0x0; + R0.l = 0x20; W[P0] = R0.l; SSYNC; |