Ignore:
Timestamp:
2023-01-18T20:47:12Z (15 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aaa3b855
Parents:
eb630cf
Message:

Use irq_spinlock functions in arm32 code, to be consistent with all other code

File:
1 edited

Legend:

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

    reb630cf rb67ce1ff  
    9292         * Release the lock, call clock() and reacquire the lock again.
    9393         */
    94         spinlock_unlock(&irq->lock);
     94        irq_spinlock_unlock(&irq->lock, false);
    9595        clock();
    96         spinlock_lock(&irq->lock);
     96        irq_spinlock_lock(&irq->lock, false);
    9797}
    9898
     
    156156                /* The IRQ handler was found. */
    157157                irq->handler(irq);
    158                 spinlock_unlock(&irq->lock);
     158                irq_spinlock_unlock(&irq->lock, false);
    159159        } else {
    160160                /* Spurious interrupt. */
Note: See TracChangeset for help on using the changeset viewer.