Ignore:
File:
1 edited

Legend:

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

    rb67ce1ff rc5429fe  
    9292         * Release the lock, call clock() and reacquire the lock again.
    9393         */
    94         irq_spinlock_unlock(&irq->lock, false);
     94        spinlock_unlock(&irq->lock);
    9595        clock();
    96         irq_spinlock_lock(&irq->lock, false);
     96        spinlock_lock(&irq->lock);
    9797}
    9898
     
    156156                /* The IRQ handler was found. */
    157157                irq->handler(irq);
    158                 irq_spinlock_unlock(&irq->lock, false);
     158                spinlock_unlock(&irq->lock);
    159159        } else {
    160                 /* Spurious interrupt. */
     160                /* Spurious interrupt.*/
    161161                printf("cpu%d: spurious interrupt (inum=%d)\n",
    162162                    CPU->id, inum);
Note: See TracChangeset for help on using the changeset viewer.