]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - tmk_core/common/keymap.c
m0110_usb: Change keymap and Makefile
[max/tmk_keyboard.git] / tmk_core / common / keymap.c
index a43ca460f278447320805b82aa4f0107516916f9..9f4fab521662ab84f4069e30a45b6eec2d9337cf 100644 (file)
@@ -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: