Skip to content

Commit

Permalink
Fixup build failures. (#23869)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc committed Jun 5, 2024
1 parent 6d365dd commit a4da5f2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
12 changes: 6 additions & 6 deletions keyboards/matrix/m12og/rev2/rev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

#include "quantum.h"

void matrix_init_user(void) {
gpio_set_pin_output(C6);
gpio_set_pin_output(B2);
gpio_set_pin_output(B1);
matrix_init_user();
void matrix_init_kb(void) {
gpio_set_pin_output(C6);
gpio_set_pin_output(B2);
gpio_set_pin_output(B1);

matrix_init_user();
}

bool led_update_kb(led_t led_state) {
Expand Down
5 changes: 5 additions & 0 deletions keyboards/mechwild/mokulua/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"build": {
"lto": true
}
}
3 changes: 3 additions & 0 deletions keyboards/planck/rev4/keyboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"pid": "0xAE01",
"device_version": "0.0.4"
},
"build": {
"lto": true
},
"features": {
"audio": true,
"bootmagic": true,
Expand Down
3 changes: 3 additions & 0 deletions keyboards/planck/rev5/keyboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"pid": "0xAE01",
"device_version": "0.0.5"
},
"build": {
"lto": true
},
"features": {
"audio": true,
"bootmagic": true,
Expand Down

0 comments on commit a4da5f2

Please sign in to comment.