spinlock: fix typo of sched_note_spinlock_unlock()

should be sched_note_spinlock_unlock() not sched_note_spinlock_unlocked()

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an 2024-08-04 20:12:39 +08:00 committed by Xiang Xiao
parent 1eca39eacc
commit fb0e46660a

View File

@ -156,7 +156,7 @@ void sched_note_spinlock_unlock(FAR volatile spinlock_t *spinlock);
# define sched_note_spinlock_lock(spinlock)
# define sched_note_spinlock_locked(spinlock)
# define sched_note_spinlock_abort(spinlock)
# define sched_note_spinlock_unlocked(spinlock)
# define sched_note_spinlock_unlock(spinlock)
#endif
/****************************************************************************