Ignore:
File:
1 edited

Legend:

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

    rb67ce1ff rc5429fe  
    146146                /* The IRQ handler was found. */
    147147                irq->handler(irq);
    148                 irq_spinlock_unlock(&irq->lock, false);
     148                spinlock_unlock(&irq->lock);
    149149        } else {
    150                 /* Spurious interrupt. */
     150                /* Spurious interrupt.*/
    151151                log(LF_ARCH, LVL_DEBUG, "cpu%d: spurious interrupt (inum=%d)",
    152152                    CPU->id, inum);
     
    258258         * Release the lock, call clock() and reacquire the lock again.
    259259         */
    260         irq_spinlock_unlock(&irq->lock, false);
     260        spinlock_unlock(&irq->lock);
    261261        clock();
    262         irq_spinlock_lock(&irq->lock, false);
     262        spinlock_lock(&irq->lock);
    263263}
    264264
Note: See TracChangeset for help on using the changeset viewer.