diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-08-07 15:16:56 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-10-23 05:03:50 -0400 |
commit | e4337968e43698a68ba608369f46d4a4114111ca (patch) | |
tree | 60fc5d13486e666f51b147c91ab9d8df6c237e78 /cpu/blackfin | |
parent | 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4 (diff) | |
download | u-boot-imx-e4337968e43698a68ba608369f46d4a4114111ca.zip u-boot-imx-e4337968e43698a68ba608369f46d4a4114111ca.tar.gz u-boot-imx-e4337968e43698a68ba608369f46d4a4114111ca.tar.bz2 |
Blackfin: only enable hardware error irq by default
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'cpu/blackfin')
-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 53de5ab..0c79932 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; } |