drivers: counter: add missing include
Add missing include for get_value_64 in the counter_handlers.c file. Signed-off-by: Dawid Niedzwiecki <dawidn@google.com>
This commit is contained in:
parent
0b9430169e
commit
3b85e8b8ea
1 changed files with 2 additions and 2 deletions
|
|
@ -71,6 +71,7 @@ static inline int z_vrfy_counter_get_value(const struct device *dev,
|
|||
K_OOPS(K_SYSCALL_MEMORY_WRITE(ticks, sizeof(*ticks)));
|
||||
return z_impl_counter_get_value((const struct device *)dev, ticks);
|
||||
}
|
||||
#include <zephyr/syscalls/counter_get_value_mrsh.c>
|
||||
|
||||
static inline int z_vrfy_counter_get_value_64(const struct device *dev,
|
||||
uint64_t *ticks)
|
||||
|
|
@ -79,8 +80,7 @@ static inline int z_vrfy_counter_get_value_64(const struct device *dev,
|
|||
K_OOPS(K_SYSCALL_MEMORY_WRITE(ticks, sizeof(*ticks)));
|
||||
return z_impl_counter_get_value_64((const struct device *)dev, ticks);
|
||||
}
|
||||
|
||||
#include <zephyr/syscalls/counter_get_value_mrsh.c>
|
||||
#include <zephyr/syscalls/counter_get_value_64_mrsh.c>
|
||||
|
||||
static inline int z_vrfy_counter_set_channel_alarm(const struct device *dev,
|
||||
uint8_t chan_id,
|
||||
|
|
|
|||
Loading…
Reference in a new issue