summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/lufa/lufa.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-01-21 03:21:17 +1100
committerGitHub <noreply@github.com>2023-01-20 16:21:17 +0000
commitcf935d97ae479e7a1e1f2f2f248b93e52e4cc69e (patch)
treecb7dc41b774171ce7036f963941ce801e868d8cd /tmk_core/protocol/lufa/lufa.c
parent0f77ae6a20652c11bc252548bd28fd64f5fb6b97 (diff)
Fix functions with empty params (#19647)
* Fix functions with empty params * Found a bunch more
Diffstat (limited to 'tmk_core/protocol/lufa/lufa.c')
-rw-r--r--tmk_core/protocol/lufa/lufa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 99f7d31287..20bfc8fb3c 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -298,7 +298,7 @@ void EVENT_USB_Device_Reset(void) {
298 * 298 *
299 * FIXME: Needs doc 299 * FIXME: Needs doc
300 */ 300 */
301void EVENT_USB_Device_Suspend() { 301void EVENT_USB_Device_Suspend(void) {
302 print("[S]"); 302 print("[S]");
303 usb_device_state_set_suspend(USB_Device_ConfigurationNumber != 0, USB_Device_ConfigurationNumber); 303 usb_device_state_set_suspend(USB_Device_ConfigurationNumber != 0, USB_Device_ConfigurationNumber);
304 304
@@ -311,7 +311,7 @@ void EVENT_USB_Device_Suspend() {
311 * 311 *
312 * FIXME: Needs doc 312 * FIXME: Needs doc
313 */ 313 */
314void EVENT_USB_Device_WakeUp() { 314void EVENT_USB_Device_WakeUp(void) {
315 print("[W]"); 315 print("[W]");
316#if defined(NO_USB_STARTUP_CHECK) 316#if defined(NO_USB_STARTUP_CHECK)
317 suspend_wakeup_init(); 317 suspend_wakeup_init();