Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixup build failures. #23869

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading