projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b66f08
)
Blackfin: only enable hardware error irq by default
author
Mike Frysinger
<vapier@gentoo.org>
Thu, 7 Aug 2008 19:16:56 +0000
(15:16 -0400)
committer
Mike Frysinger
<vapier@gentoo.org>
Thu, 23 Oct 2008 09:03:50 +0000
(
05:03
-0400)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
cpu/blackfin/cpu.c
patch
|
blob
|
history
diff --git
a/cpu/blackfin/cpu.c
b/cpu/blackfin/cpu.c
index 53de5aba67dee2f6e830a16db42dd2eef6d26189..0c799325c63c2517aadde74435dae5399332825c 100644
(file)
--- 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 = 0x
ffffffb
f;
+ /* enable
hardware error irq
*/
+ irq_flags = 0x
3
f;
local_irq_enable();
- CSYNC();
return 0;
}