Changes in kernel/arch/arm32/src/mach/beagleboardxm/beagleboardxm.c [b67ce1ff:c5429fe] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/mach/beagleboardxm/beagleboardxm.c
rb67ce1ff rc5429fe 92 92 * Release the lock, call clock() and reacquire the lock again. 93 93 */ 94 irq_spinlock_unlock(&irq->lock, false);94 spinlock_unlock(&irq->lock); 95 95 clock(); 96 irq_spinlock_lock(&irq->lock, false);96 spinlock_lock(&irq->lock); 97 97 } 98 98 … … 156 156 /* The IRQ handler was found. */ 157 157 irq->handler(irq); 158 irq_spinlock_unlock(&irq->lock, false);158 spinlock_unlock(&irq->lock); 159 159 } else { 160 /* Spurious interrupt. */160 /* Spurious interrupt.*/ 161 161 printf("cpu%d: spurious interrupt (inum=%d)\n", 162 162 CPU->id, inum);
Note:
See TracChangeset
for help on using the changeset viewer.
