aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/keyboard.c3
-rw-r--r--common/suspend.c3
2 files changed, 1 insertions, 5 deletions
diff --git a/common/keyboard.c b/common/keyboard.c
index d1821a099..601e3abe1 100644
--- a/common/keyboard.c
+++ b/common/keyboard.c
@@ -54,9 +54,6 @@ static bool has_ghost_in_row(uint8_t row)
54 54
55void keyboard_init(void) 55void keyboard_init(void)
56{ 56{
57 // TODO: configuration of sendchar impl
58 print_set_sendchar(sendchar);
59
60 timer_init(); 57 timer_init();
61 matrix_init(); 58 matrix_init();
62#ifdef PS2_MOUSE_ENABLE 59#ifdef PS2_MOUSE_ENABLE
diff --git a/common/suspend.c b/common/suspend.c
index 146b96d5c..5b378892f 100644
--- a/common/suspend.c
+++ b/common/suspend.c
@@ -51,8 +51,7 @@ bool suspend_wakeup_condition(void)
51// run immediately after wakeup 51// run immediately after wakeup
52void suspend_wakeup_init(void) 52void suspend_wakeup_init(void)
53{ 53{
54 // clear matrix and keyboard state 54 // clear keyboard state
55 matrix_init();
56 clear_keyboard(); 55 clear_keyboard();
57#ifdef BACKLIGHT_ENABLE 56#ifdef BACKLIGHT_ENABLE
58 backlight_init(); 57 backlight_init();