aboutsummaryrefslogtreecommitdiff
path: root/common/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/keyboard.c')
-rw-r--r--common/keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/keyboard.c b/common/keyboard.c
index 1acb79861..401fdb4e1 100644
--- a/common/keyboard.c
+++ b/common/keyboard.c
@@ -29,10 +29,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
29#include "util.h" 29#include "util.h"
30#include "sendchar.h" 30#include "sendchar.h"
31#include "bootmagic.h" 31#include "bootmagic.h"
32#ifdef MOUSEKEY_ENABLE
33#include "mousekey.h"
34#endif
35#include "eeconfig.h" 32#include "eeconfig.h"
33#include "mousekey.h"
36 34
37 35
38#ifdef MATRIX_HAS_GHOST 36#ifdef MATRIX_HAS_GHOST
@@ -64,6 +62,7 @@ void keyboard_init(void)
64 ps2_mouse_init(); 62 ps2_mouse_init();
65#endif 63#endif
66 64
65#ifdef BOOTMAGIC_ENABLE
67 bootmagic(); 66 bootmagic();
68 67
69 if (eeconfig_is_enabled()) { 68 if (eeconfig_is_enabled()) {
@@ -77,6 +76,7 @@ void keyboard_init(void)
77 } else { 76 } else {
78 eeconfig_init(); 77 eeconfig_init();
79 } 78 }
79#endif
80} 80}
81 81
82/* 82/*