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/gta02/gta02.c

    reb630cf rb67ce1ff  
    146146                /* The IRQ handler was found. */
    147147                irq->handler(irq);
    148                 spinlock_unlock(&irq->lock);
     148                irq_spinlock_unlock(&irq->lock, false);
    149149        } else {
    150150                /* Spurious interrupt. */
     
    258258         * Release the lock, call clock() and reacquire the lock again.
    259259         */
    260         spinlock_unlock(&irq->lock);
     260        irq_spinlock_unlock(&irq->lock, false);
    261261        clock();
    262         spinlock_lock(&irq->lock);
     262        irq_spinlock_lock(&irq->lock, false);
    263263}
    264264
Note: See TracChangeset for help on using the changeset viewer.