summaryrefslogtreecommitdiff
path: root/app/src/usb.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/usb.c')
-rw-r--r--app/src/usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/usb.c b/app/src/usb.c
index 009d7af..2b3de78 100644
--- a/app/src/usb.c
+++ b/app/src/usb.c
@@ -25,7 +25,7 @@ static const struct device *hid_dev;
static K_SEM_DEFINE(hid_sem, 1, 1);
-static void in_ready_cb(void) { k_sem_give(&hid_sem); }
+static void in_ready_cb(const struct device *dev) { k_sem_give(&hid_sem); }
static const struct hid_ops ops = {
.int_in_ready = in_ready_cb,