Changeset 214ec25c in mainline for kernel/arch/arm32/src/mach


Ignore:
Timestamp:
2010-06-11T16:07:21Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b584cd4
Parents:
b3b7e14a
Message:

use unsigned integers for exception and interrupt numbers

Location:
kernel/arch/arm32/src/mach
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mach/integratorcp/integratorcp.c

    rb3b7e14a r214ec25c  
    242242 * @param istate Saved processor state.
    243243 */
    244 void icp_irq_exception(int exc_no, istate_t *istate)
     244void icp_irq_exception(unsigned int exc_no, istate_t *istate)
    245245{
    246246        uint32_t sources = icp_irqc_get_sources();
    247         int i;
     247        unsigned int i;
    248248       
    249249        for (i = 0; i < ICP_IRQC_MAX_IRQ; i++) {
  • kernel/arch/arm32/src/mach/testarm/testarm.c

    rb3b7e14a r214ec25c  
    205205 * Determines the sources of interrupt and calls their handlers.
    206206 */
    207 void gxemul_irq_exception(int exc_no, istate_t *istate)
     207void gxemul_irq_exception(unsigned int exc_no, istate_t *istate)
    208208{
    209209        uint32_t sources = gxemul_irqc_get_sources();
Note: See TracChangeset for help on using the changeset viewer.