diff options
author | QMK Bot <hello@qmk.fm> | 2022-11-29 19:44:26 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-11-29 19:44:26 +0000 |
commit | d648eb42caa633ab411da93d2bbe9c3eacaa8172 (patch) | |
tree | d534ed33cdfac430a19818c514dff90b337b1c8a /users/drashna/callbacks.md | |
parent | c146563f4b12d8ef1446318a65c61dac1b197b23 (diff) | |
parent | 4a87af0e9af046d5fc00d930476920c0c34a57a7 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'users/drashna/callbacks.md')
-rw-r--r-- | users/drashna/callbacks.md | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/users/drashna/callbacks.md b/users/drashna/callbacks.md index a0f0d9fdae..5908a66142 100644 --- a/users/drashna/callbacks.md +++ b/users/drashna/callbacks.md @@ -15,11 +15,6 @@ My [Ergodox EZ Keymap](https://github.com/qmk/qmk_firmware/blob/master/layouts/c You can see a list of these files in [callbacks.c](callbacks.c), or a shortend list here ```c -__attribute__((weak)) void matrix_init_keymap(void) {} -void matrix_init_user(void) { - matrix_init_keymap(); -} - __attribute__((weak)) void keyboard_post_init_keymap(void) {} void keyboard_post_init_user(void) { keyboard_post_init_keymap(); |