summaryrefslogtreecommitdiff
path: root/core/host/atomic.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/host/atomic.h')
-rw-r--r--core/host/atomic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/host/atomic.h b/core/host/atomic.h
index 4150a20216..7f2e0ba16f 100644
--- a/core/host/atomic.h
+++ b/core/host/atomic.h
@@ -16,8 +16,8 @@
* removed in the following patches. Please see b:169151160 for more details.
*/
-static inline void deprecated_atomic_clear(uint32_t volatile *addr,
- uint32_t bits)
+static inline void deprecated_atomic_clear_bits(uint32_t volatile *addr,
+ uint32_t bits)
{
__sync_and_and_fetch(addr, ~bits);
}