summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/host_driver.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-07 13:35:01 +1100
committerGitHub <noreply@github.com>2022-10-06 19:35:01 -0700
commit6dbbeea46a0ac7527235982cb6406802df846805 (patch)
tree55b2a71430ad3726ab098a53b581a69efdd1602d /tmk_core/protocol/host_driver.h
parentcbe1c22d468d64d7a3274061ce9c2073ecb208a4 (diff)
Refactor `send_extra` (#18615)
Diffstat (limited to 'tmk_core/protocol/host_driver.h')
-rw-r--r--tmk_core/protocol/host_driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/host_driver.h b/tmk_core/protocol/host_driver.h
index bb4dcdd877..7dc6c3d810 100644
--- a/tmk_core/protocol/host_driver.h
+++ b/tmk_core/protocol/host_driver.h
@@ -27,7 +27,7 @@ typedef struct {
uint8_t (*keyboard_leds)(void);
void (*send_keyboard)(report_keyboard_t *);
void (*send_mouse)(report_mouse_t *);
- void (*send_extra)(uint8_t, uint16_t);
+ void (*send_extra)(report_extra_t *);
} host_driver_t;
void send_joystick(report_joystick_t *report);