X-Git-Url: https://git.donarmstrong.com/?p=tmk_firmware.git;a=blobdiff_plain;f=common%2Fkeymap.c;fp=common%2Fkeymap.c;h=4c0b61b8c118cb17d719e82f2149ee158720bc79;hp=bfb8ffac1a593b1cd06a6364db4ce3c2f151df31;hb=c5d3988e7ace6a7c940f543ab2539be8ef15bd7d;hpb=0c95282d3d6d1d9158a8b29b25b96609869adb0c diff --git a/common/keymap.c b/common/keymap.c index bfb8ffa..4c0b61b 100644 --- a/common/keymap.c +++ b/common/keymap.c @@ -14,7 +14,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#include #include "keymap.h" #include "report.h" #include "keycode.h" @@ -28,7 +27,7 @@ static action_t keycode_to_action(uint8_t keycode); /* converts key to action */ -action_t action_for_key(uint8_t layer, key_t key) +action_t action_for_key(uint8_t layer, keypos_t key) { uint8_t keycode = keymap_key_to_keycode(layer, key); switch (keycode) { @@ -156,7 +155,7 @@ static action_t keycode_to_action(uint8_t keycode) * Consider using new keymap API instead. */ __attribute__ ((weak)) -uint8_t keymap_key_to_keycode(uint8_t layer, key_t key) +uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key) { return keymap_get_keycode(layer, key.row, key.col); }