diff options
author | IBNobody <protospherex@gmail.com> | 2016-03-22 20:58:44 -0500 |
---|---|---|
committer | IBNobody <protospherex@gmail.com> | 2016-03-22 20:58:44 -0500 |
commit | 10491ba21f91526c2011f43523dcde8710706dff (patch) | |
tree | a83989af114543d56d7e27697cee3348ce9d25bf /tmk_core | |
parent | ec62d9e85cab5cf166241b0536120d005fa7c898 (diff) | |
download | qmk_firmware-10491ba21f91526c2011f43523dcde8710706dff.tar.gz qmk_firmware-10491ba21f91526c2011f43523dcde8710706dff.zip |
Fixed LED Function Calls
Fixed LED indicator function calls to match how the matrix init function
calls are formatted.
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/led.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h index 4b9632d3a4..2e18dc2afa 100644 --- a/tmk_core/common/led.h +++ b/tmk_core/common/led.h @@ -33,11 +33,12 @@ extern "C" { #endif void led_set(uint8_t usb_led); -void * led_set_kb(uint8_t usb_led); +/* keyboard-specific LED functionality */ +void led_set_kb(uint8_t usb_led); #ifdef __cplusplus } #endif -#endif +#endif
\ No newline at end of file |