diff options
| author | Mike Frysinger <[email protected]> | 2008-08-07 15:16:56 -0400 |
|---|---|---|
| committer | Mike Frysinger <[email protected]> | 2008-10-23 05:03:50 -0400 |
| commit | e4337968e43698a68ba608369f46d4a4114111ca (patch) | |
| tree | 60fc5d13486e666f51b147c91ab9d8df6c237e78 /cpu | |
| parent | 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4 (diff) | |
Blackfin: only enable hardware error irq by default
Signed-off-by: Mike Frysinger <[email protected]>
Diffstat (limited to 'cpu')
| -rw-r--r-- | cpu/blackfin/cpu.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpu/blackfin/cpu.c b/cpu/blackfin/cpu.c index 53de5aba67d..0c799325c63 100644 --- a/cpu/blackfin/cpu.c +++ b/cpu/blackfin/cpu.c @@ -133,9 +133,8 @@ int irq_init(void) bfin_write_EVT15(evt_default); bfin_write_ILAT(0); CSYNC(); - /* enable all interrupts except for core timer */ - irq_flags = 0xffffffbf; + /* enable hardware error irq */ + irq_flags = 0x3f; local_irq_enable(); - CSYNC(); return 0; } |
