diff options
author | Joel Challis <git@zvecr.com> | 2022-12-14 11:14:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 11:14:10 +0000 |
commit | 1124bbc1db8fb26418bded7016c702de469b162f (patch) | |
tree | 6486fdf3ddcd39355af2a94b8998e57dc1d239cc /quantum | |
parent | 0fcf481cdd2a350b628462201b0a725df6c72b2b (diff) |
Remove deprecated led_set_kb (#19273)
* Remove led_set_kb maintaining existing led_set_user behaviour
* Also call led_set_user
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/led.c | 10 | ||||
-rw-r--r-- | quantum/led.h | 5 |
2 files changed, 4 insertions, 11 deletions
diff --git a/quantum/led.c b/quantum/led.c index 7db38bb88c..42144566fd 100644 --- a/quantum/led.c +++ b/quantum/led.c @@ -69,14 +69,6 @@ uint32_t last_led_activity_elapsed(void) { */ __attribute__((weak)) void led_set_user(uint8_t usb_led) {} -/** \brief Lock LED set callback - keyboard level - * - * \deprecated Use led_update_kb() instead. - */ -__attribute__((weak)) void led_set_kb(uint8_t usb_led) { - led_set_user(usb_led); -} - /** \brief Lock LED update callback - keymap/user level * * \return True if led_update_kb() should run its own code, false otherwise. @@ -154,7 +146,7 @@ __attribute__((weak)) void led_set(uint8_t usb_led) { handle_backlight_caps_lock((led_t)usb_led); #endif - led_set_kb(usb_led); + led_set_user(usb_led); led_update_kb((led_t)usb_led); } diff --git a/quantum/led.h b/quantum/led.h index d12e519ea2..b9ad7ed9ae 100644 --- a/quantum/led.h +++ b/quantum/led.h @@ -55,9 +55,10 @@ void led_wakeup(void); void led_task(void); -/* Callbacks */ +/* Deprecated callbacks */ void led_set_user(uint8_t usb_led); -void led_set_kb(uint8_t usb_led); + +/* Callbacks */ bool led_update_user(led_t led_state); bool led_update_kb(led_t led_state); void led_update_ports(led_t led_state); |