diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-02-22 04:56:41 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-02-22 04:56:41 +0000 |
commit | 638e72ad4d3732a69b85e05efcbd778eefebb9be (patch) | |
tree | 432bffb7b30d24ae631d8933fee9612848986d8a /arch/mips64 | |
parent | c884ada29ead83a2777c4097489dc4db26419624 (diff) |
We were initializing the node's other cpu instead of ourself.
Diffstat (limited to 'arch/mips64')
-rw-r--r-- | arch/mips64/sgi-ip27/ip27-berr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips64/sgi-ip27/ip27-berr.c b/arch/mips64/sgi-ip27/ip27-berr.c index fade5a7af..87cd5fde9 100644 --- a/arch/mips64/sgi-ip27/ip27-berr.c +++ b/arch/mips64/sgi-ip27/ip27-berr.c @@ -95,7 +95,7 @@ bus_error_init(void) set_except_vector(7, handle_dbe); LOCAL_HUB_S(PI_ERR_INT_PEND, - cpu ? PI_ERR_CLEAR_ALL_A : PI_ERR_CLEAR_ALL_B); + cpu ? PI_ERR_CLEAR_ALL_B : PI_ERR_CLEAR_ALL_A); LOCAL_HUB_S(PI_ERR_INT_MASK_A + cpuoff, 0); LOCAL_HUB_S(PI_ERR_STACK_ADDR_A + cpuoff, 0); LOCAL_HUB_S(PI_ERR_STACK_SIZE, 0); /* Disable error stack */ |