Changeset 646b996 in mainline for kernel/arch/arm32/src/interrupt.c


Ignore:
Timestamp:
2009-07-30T15:58:54Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
30885b9
Parents:
76093ae
Message:

cleanup some of the dirty hacks introduced into the arm32 port
add default configurations for the two supported arm32 variants

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/interrupt.c

    r76093ae r646b996  
    3636#include <arch/asm.h>
    3737#include <arch/regutils.h>
    38 #include <arch/machine.h>
    3938#include <ddi/irq.h>
    4039#include <ddi/device.h>
    4140#include <interrupt.h>
     41
     42#ifdef MACHINE_testarm
     43        #include <arch/mach/testarm/testarm.h>
     44#endif
     45
     46#ifdef MACHINE_integratorcp
     47        #include <arch/mach/integratorcp/integratorcp.h>
     48#endif
    4249
    4350/** Initial size of a table holding interrupt handlers. */
     
    97104        irq_init(IRQ_COUNT, IRQ_COUNT);
    98105        machine_timer_irq_start();
    99        
    100106}
    101107
Note: See TracChangeset for help on using the changeset viewer.