diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-08-14 03:05:01 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-08-14 03:05:01 -0400 |
commit | 95a86b5e51139a199d081b6b108e761966d914ef (patch) | |
tree | 5eb44da84ab8d13e3362fa7d04eb450438785500 /arch/blackfin/mach-common/ints-priority.c | |
parent | c991dd92ab150c0b4ba531105aad5612bb0dafba (diff) |
Blackfin arch: clear EMAC_SYSTAT during IRQ init rather than early head.S as we dont need it setup that early
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-common/ints-priority.c')
-rw-r--r-- | arch/blackfin/mach-common/ints-priority.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/blackfin/mach-common/ints-priority.c b/arch/blackfin/mach-common/ints-priority.c index 7f9df4ee7346..62f8883a5c27 100644 --- a/arch/blackfin/mach-common/ints-priority.c +++ b/arch/blackfin/mach-common/ints-priority.c | |||
@@ -983,6 +983,11 @@ int __init init_arch_irq(void) | |||
983 | 983 | ||
984 | local_irq_disable(); | 984 | local_irq_disable(); |
985 | 985 | ||
986 | #if defined(CONFIG_BF527) || defined(CONFIG_BF536) || defined(CONFIG_BF537) | ||
987 | /* Clear EMAC Interrupt Status bits so we can demux it later */ | ||
988 | bfin_write_EMAC_SYSTAT(-1); | ||
989 | #endif | ||
990 | |||
986 | #ifdef CONFIG_BF54x | 991 | #ifdef CONFIG_BF54x |
987 | # ifdef CONFIG_PINTx_REASSIGN | 992 | # ifdef CONFIG_PINTx_REASSIGN |
988 | pint[0]->assign = CONFIG_PINT0_ASSIGN; | 993 | pint[0]->assign = CONFIG_PINT0_ASSIGN; |