Home
last modified time | relevance | path

Searched refs:__hwspin_trylock (Results 1 – 2 of 2) sorted by relevance

/linux/include/linux/
H A Dhwspinlock.h68 int __hwspin_trylock(struct hwspinlock *, int, unsigned long *);
121 int __hwspin_trylock(struct hwspinlock *hwlock, int mode, unsigned long *flags) in __hwspin_trylock() function
191 return __hwspin_trylock(hwlock, HWLOCK_IRQSTATE, flags); in hwspin_trylock_irqsave()
210 return __hwspin_trylock(hwlock, HWLOCK_IRQ, NULL); in hwspin_trylock_irq()
229 return __hwspin_trylock(hwlock, HWLOCK_RAW, NULL); in hwspin_trylock_raw()
246 return __hwspin_trylock(hwlock, HWLOCK_IN_ATOMIC, NULL); in hwspin_trylock_in_atomic()
266 return __hwspin_trylock(hwlock, 0, NULL); in hwspin_trylock()
/linux/drivers/hwspinlock/
H A Dhwspinlock_core.c92 int __hwspin_trylock(struct hwspinlock *hwlock, int mode, unsigned long *flags) in __hwspin_trylock() function
170 EXPORT_SYMBOL_GPL(__hwspin_trylock);
219 ret = __hwspin_trylock(hwlock, mode, flags); in __hwspin_lock_timeout()