Lines Matching defs:lock
16 #define scmi_lock_init(lock)
17 #define scmi_lock_get(lock) spin_lock(lock)
18 #define scmi_lock_release(lock) spin_unlock(lock)
20 #define scmi_lock_init(lock) bakery_lock_init(lock)
21 #define scmi_lock_get(lock) bakery_lock_get(lock)
22 #define scmi_lock_release(lock) bakery_lock_release(lock)
31 assert(ch->lock);
32 scmi_lock_get(ch->lock);
83 assert(ch->lock);
84 scmi_lock_release(ch->lock);
168 assert(ch->lock);
170 scmi_lock_init(ch->lock);