Skip to content

Commit

Permalink
Remove duplicate calls to housekeeping_task_user (#24201)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr committed Jul 27, 2024
1 parent 938837e commit 20ae67b
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion keyboards/1upkeyboards/1upslider8/1upslider8.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ void slider(void) {

void housekeeping_task_kb(void) {
slider();
housekeeping_task_user();
}

static uint32_t oled_logo_timer = 0;
Expand Down
1 change: 0 additions & 1 deletion keyboards/boardsource/equals/equals.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,5 @@ void keyboard_post_init_kb(void) {

void housekeeping_task_kb(void) {
ui_task();
housekeeping_task_user();
}
#endif // QUANTUM_PAINTER_ENABLE
1 change: 0 additions & 1 deletion keyboards/hardwareabstraction/handwire/handwire.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ void housekeeping_task_kb(void){
gpio_write_pin_low(BUZZER_PIN);
}
}
housekeeping_task_user();
}

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
Expand Down
2 changes: 0 additions & 2 deletions keyboards/neson_design/700e/700e.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,6 @@ void housekeeping_task_kb(void)
}

is31fl3731_flush();

housekeeping_task_user();
}

void setleds_custom(rgb_led_t *start_led, uint16_t num_leds)
Expand Down
2 changes: 0 additions & 2 deletions keyboards/neson_design/n6/n6.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,6 @@ void housekeeping_task_kb(void)
}

is31fl3731_flush();

housekeeping_task_user();
}

void setleds_custom(rgb_led_t *start_led, uint16_t num_leds)
Expand Down
2 changes: 0 additions & 2 deletions keyboards/pica40/rev1/rev1.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ void housekeeping_task_kb(void) {
rgblight_disable_noeeprom();
}
}

housekeeping_task_user();
}

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
Expand Down
2 changes: 0 additions & 2 deletions keyboards/pica40/rev2/rev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,4 @@ void housekeeping_task_kb(void) {
}
}
#endif // defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_LAYERS)

housekeeping_task_user();
}
2 changes: 0 additions & 2 deletions keyboards/stront/stront.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ void housekeeping_task_kb(void) {
if (display_enabled) {
display_housekeeping_task();
}

housekeeping_task_user();
}

void keyboard_post_init_kb(void) {
Expand Down

0 comments on commit 20ae67b

Please sign in to comment.