Commit 58527c10 authored by Tim Pambor's avatar Tim Pambor Committed by Benjamin Cabé
Browse files

input: Fix function signature of input_thread



Update the input_thread function signature to match the expected
k_thread_entry_t type:
typedef void (*k_thread_entry_t)(void *p1, void *p2, void *p3);

Signed-off-by: default avatarTim Pambor <tim.pambor@codewrights.de>
parent 4bd7e0bc
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -73,8 +73,12 @@ int input_report(const struct device *dev,

#ifdef CONFIG_INPUT_MODE_THREAD

static void input_thread(void)
static void input_thread(void *p1, void *p2, void *p3)
{
	ARG_UNUSED(p1);
	ARG_UNUSED(p2);
	ARG_UNUSED(p3);

	struct input_event evt;
	int ret;