summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorTill Straumann <strauman@slac.stanford.edu>2008-07-22 06:11:34 +0000
committerTill Straumann <strauman@slac.stanford.edu>2008-07-22 06:11:34 +0000
commit479f25550b3d85fd2e15b326ece7c06abda40aa1 (patch)
treefea7fbd4617918337cfac0f8b203438f51df5dd4 /c
parent2008-07-21 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-479f25550b3d85fd2e15b326ece7c06abda40aa1.tar.bz2
2008-07-21 Till Straumann <strauman@slac.stanford.edu>
* startup/bspstart.c: Removed MSR_CE from interrupt mask - this was set for testing but should not be in the mask by default.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/powerpc/virtex/ChangeLog6
-rw-r--r--c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/powerpc/virtex/ChangeLog b/c/src/lib/libbsp/powerpc/virtex/ChangeLog
index 0157e94d1d..642ca98261 100644
--- a/c/src/lib/libbsp/powerpc/virtex/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/virtex/ChangeLog
@@ -1,5 +1,11 @@
2008-07-21 Till Straumann <strauman@slac.stanford.edu>
+ * startup/bspstart.c: Removed MSR_CE from interrupt
+ mask - this was set for testing but should not be
+ in the mask by default.
+
+2008-07-21 Till Straumann <strauman@slac.stanford.edu>
+
* Makefile.am, preinstall.am, irq/irq_init.c:
Use low-level exception handling support from
new-exceptions/bspsupport.
diff --git a/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c b/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c
index 8bac1b24cd..69956b4c46 100644
--- a/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c
@@ -182,7 +182,7 @@ void bsp_start( void )
* Initialize default raw exception handlers.
*/
ppc_exc_initialize(
- PPC_INTERRUPT_DISABLE_MASK_DEFAULT | MSR_CE,
+ PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
(uint32_t)IntrStack_start,
IntrStack_end - IntrStack_start
);