From 5b46031658a69104526ef43284acd943ba21b772 Mon Sep 17 00:00:00 2001 From: tmk Date: Thu, 21 May 2015 20:30:10 +0900 Subject: Revert "Make action_for_key a weak symbol" This reverts commit c17b8a599e3ec3b0a327bcd66082541f2517ab30. The commit made compile error and its intention is unclear. --- tmk_core/common/keymap.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'tmk_core/common/keymap.c') diff --git a/tmk_core/common/keymap.c b/tmk_core/common/keymap.c index a43ca460f2..9f4fab5216 100644 --- a/tmk_core/common/keymap.c +++ b/tmk_core/common/keymap.c @@ -27,13 +27,8 @@ static action_t keycode_to_action(uint8_t keycode); /* converts key to action */ -__attribute__((__weak__)) action_t action_for_key(uint8_t layer, keypos_t key) { - return action_for_key_default(layer, key); -} - -action_t action_for_key_default(uint8_t layer, keypos_t key) uint8_t keycode = keymap_key_to_keycode(layer, key); switch (keycode) { case KC_FN0 ... KC_FN31: -- cgit v1.2.1