diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-04-03 16:00:10 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-04-03 16:00:10 -0400 |
commit | a90d68739a29debe93bdf9e26f2c126e8eca46e9 (patch) | |
tree | 734554c78281c473f56eaac206c50a27ea758732 /keyboard/preonic/preonic.c | |
parent | 8d39263d2444f0273327902684c802b218efb7b6 (diff) |
music mode file
Diffstat (limited to 'keyboard/preonic/preonic.c')
-rw-r--r-- | keyboard/preonic/preonic.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/keyboard/preonic/preonic.c b/keyboard/preonic/preonic.c index a678f7b09f..e9ececb6d8 100644 --- a/keyboard/preonic/preonic.c +++ b/keyboard/preonic/preonic.c @@ -1,16 +1,16 @@ #include "preonic.h" __attribute__ ((weak)) -void * matrix_init_user(void) { +void matrix_init_user(void) { }; __attribute__ ((weak)) -void * matrix_scan_user(void) { +void matrix_scan_user(void) { }; -void * matrix_init_kb(void) { +void matrix_init_kb(void) { #ifdef BACKLIGHT_ENABLE backlight_init_ports(); #endif @@ -24,13 +24,9 @@ void * matrix_init_kb(void) { DDRE |= (1<<6); PORTE |= (1<<6); - if (matrix_init_user) { - (*matrix_init_user)(); - } + matrix_init_user(); }; -void * matrix_scan_kb(void) { - if (matrix_scan_user) { - (*matrix_scan_user)(); - } +void matrix_scan_kb(void) { + matrix_scan_user(); }; |