diff options
| author | Ryan <fauxpark@gmail.com> | 2023-01-21 03:21:17 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-20 16:21:17 +0000 |
| commit | cf935d97ae479e7a1e1f2f2f248b93e52e4cc69e (patch) | |
| tree | cb7dc41b774171ce7036f963941ce801e868d8cd /tmk_core/protocol | |
| parent | 0f77ae6a20652c11bc252548bd28fd64f5fb6b97 (diff) | |
Fix functions with empty params (#19647)
* Fix functions with empty params
* Found a bunch more
Diffstat (limited to 'tmk_core/protocol')
| -rw-r--r-- | tmk_core/protocol/lufa/lufa.c | 4 |
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 | */ |
| 301 | void EVENT_USB_Device_Suspend() { | 301 | void 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 | */ |
| 314 | void EVENT_USB_Device_WakeUp() { | 314 | void 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(); |
