diff options
| author | hathach <[email protected]> | 2025-11-22 01:03:37 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-11-22 11:06:57 +0700 |
| commit | b7bf1d9835b0fab2da581df8d81686509d155e15 (patch) | |
| tree | 20408c32a87940a3b2e3369e53b039841d16f2cb /src/common | |
| parent | d9094ffcee61ee0c155945969c15a34e1e7365ed (diff) | |
hil stress test cdc
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/tusb_fifo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/tusb_fifo.c b/src/common/tusb_fifo.c index 463a059f0..f09fcbafa 100644 --- a/src/common/tusb_fifo.c +++ b/src/common/tusb_fifo.c @@ -38,13 +38,13 @@ #if OSAL_MUTEX_REQUIRED -TU_ATTR_ALWAYS_INLINE static inline void _ff_lock(osal_mutex_t mutex) { +TU_ATTR_ALWAYS_INLINE static inline void ff_lock(osal_mutex_t mutex) { if (mutex != NULL) { osal_mutex_lock(mutex, OSAL_TIMEOUT_WAIT_FOREVER); } } -TU_ATTR_ALWAYS_INLINE static inline void _ff_unlock(osal_mutex_t mutex) { +TU_ATTR_ALWAYS_INLINE static inline void ff_unlock(osal_mutex_t mutex) { if (mutex != NULL) { osal_mutex_unlock(mutex); } |
