diff options
| author | Drashna Jaelre <drashna@live.com> | 2019-11-30 04:54:57 -0800 |
|---|---|---|
| committer | Joel Challis <git@zvecr.com> | 2019-11-30 12:54:57 +0000 |
| commit | d98ed28e7c9920140fea9d84ed10b5c70521c287 (patch) | |
| tree | 1246097c7c1c5341c3f427bda83e6473e16e2550 | |
| parent | beb9f3ab713442a0ef712d782d895c0fbd88277f (diff) | |
| download | qmk_firmware-d98ed28e7c9920140fea9d84ed10b5c70521c287.tar.gz qmk_firmware-d98ed28e7c9920140fea9d84ed10b5c70521c287.zip | |
[Keyboard] Fix calls in handwired/jotanck (#7515)
The C file for this keyboard was calling `keyboard_pre_init_user`. Which is wrong.
This fixes that behavior.
| -rw-r--r-- | keyboards/handwired/jotanck/jotanck.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/keyboards/handwired/jotanck/jotanck.c b/keyboards/handwired/jotanck/jotanck.c index 812781c3b..caf0ad014 100644 --- a/keyboards/handwired/jotanck/jotanck.c +++ b/keyboards/handwired/jotanck/jotanck.c | |||
| @@ -1,10 +1,12 @@ | |||
| 1 | #include "jotanck.h" | 1 | #include "jotanck.h" |
| 2 | 2 | ||
| 3 | void matrix_init_kb(void) { | 3 | void matrix_init_kb(void) { |
| 4 | matrix_init_user(); | 4 | matrix_init_user(); |
| 5 | } | 5 | } |
| 6 | 6 | ||
| 7 | void keyboard_pre_init_user() { | 7 | void keyboard_pre_init_kb() { |
| 8 | setPinOutput(JOTANCK_LED1); | 8 | setPinOutput(JOTANCK_LED1); |
| 9 | setPinOutput(JOTANCK_LED2); | 9 | setPinOutput(JOTANCK_LED2); |
| 10 | |||
| 11 | keyboard_pre_init_user(); | ||
| 10 | } | 12 | } |
