summaryrefslogtreecommitdiff
path: root/common/host_event_commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/host_event_commands.c')
-rw-r--r--common/host_event_commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/host_event_commands.c b/common/host_event_commands.c
index 1856c88c37..532cfe3be3 100644
--- a/common/host_event_commands.c
+++ b/common/host_event_commands.c
@@ -264,7 +264,7 @@ static struct lazy_wake_masks {
static void host_events_atomic_or(host_event_t *e, host_event_t m)
{
- uint32_t *ptr = (uint32_t *)e;
+ atomic_t *ptr = (atomic_t *)e;
atomic_or(ptr, (uint32_t)m);
#ifdef CONFIG_HOST_EVENT64
@@ -274,7 +274,7 @@ static void host_events_atomic_or(host_event_t *e, host_event_t m)
static void host_events_atomic_clear(host_event_t *e, host_event_t m)
{
- uint32_t *ptr = (uint32_t *)e;
+ atomic_t *ptr = (atomic_t *)e;
atomic_clear_bits(ptr, (uint32_t)m);
#ifdef CONFIG_HOST_EVENT64