aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmk_core/protocol/chibios/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/chibios/main.c b/tmk_core/protocol/chibios/main.c
index 6cceccd23..ee9571c95 100644
--- a/tmk_core/protocol/chibios/main.c
+++ b/tmk_core/protocol/chibios/main.c
@@ -75,7 +75,7 @@ host_driver_t chibios_driver = {
75void virtser_task(void); 75void virtser_task(void);
76#endif 76#endif
77 77
78#ifdef RAW_HID_ENABLE 78#ifdef RAW_ENABLE
79void raw_hid_task(void); 79void raw_hid_task(void);
80#endif 80#endif
81 81
@@ -220,7 +220,7 @@ int main(void) {
220#ifdef VIRTSER_ENABLE 220#ifdef VIRTSER_ENABLE
221 virtser_task(); 221 virtser_task();
222#endif 222#endif
223#ifdef RAW_HID_ENABLE 223#ifdef RAW_ENABLE
224 raw_hid_task(); 224 raw_hid_task();
225#endif 225#endif
226 } 226 }