summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/led.h
diff options
context:
space:
mode:
authorIBNobody <protospherex@gmail.com>2016-03-23 02:58:44 +0100
committerIBNobody <protospherex@gmail.com>2016-03-23 02:58:44 +0100
commit10491ba21f91526c2011f43523dcde8710706dff (patch)
treea83989af114543d56d7e27697cee3348ce9d25bf /tmk_core/common/led.h
parentec62d9e85cab5cf166241b0536120d005fa7c898 (diff)
downloadqmk_firmware-10491ba21f91526c2011f43523dcde8710706dff.tar.gz
qmk_firmware-10491ba21f91526c2011f43523dcde8710706dff.tar.xz
Fixed LED Function Calls
Fixed LED indicator function calls to match how the matrix init function calls are formatted.
Diffstat (limited to 'tmk_core/common/led.h')
-rw-r--r--tmk_core/common/led.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h
index 4b9632d3a..2e18dc2af 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