summary refs log tree commit diff
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-01-11 10:58:59 +1100
committerDrashna Jaelre <drashna@live.com>2019-01-11 18:32:43 -0800
commit3ea7c2a4340d129266ecea2e38185455059274d2 (patch)
tree1e0d07ae2ce9e7ef2e0353570eaf146473cd757e
parent67adc29aa35719eea2de43bacf9cd5e8b5dfd79e (diff)
Remove empty action_function()
-rw-r--r--keyboards/clueboard/17/keymaps/default/keymap.c9
-rw-r--r--keyboards/handwired/frenchdev/keymaps/default/keymap.c4
-rw-r--r--keyboards/meira/meira.c26
-rw-r--r--keyboards/planck/keymaps/yang/keymap.c10
-rw-r--r--keyboards/whitefox/keymaps/kim-kim/keymap.c21
-rw-r--r--keyboards/whitefox/keymaps/matt3o/keymap.c21
-rw-r--r--tests/basic/keymap.c3
7 files changed, 0 insertions, 94 deletions
diff --git a/keyboards/clueboard/17/keymaps/default/keymap.c b/keyboards/clueboard/17/keymaps/default/keymap.c
index 67fa79c811..53bbbaa9df 100644
--- a/keyboards/clueboard/17/keymaps/default/keymap.c
+++ b/keyboards/clueboard/17/keymaps/default/keymap.c
@@ -51,12 +51,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
   KC_TRNS,          RGB_SAD,    KC_TRNS, RGB_VAD, \
   RGB_MOD,                      KC_TRNS)
 };
-
-/*enum function_id {
-};*/
-
-void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
-  switch (id) {
-  }
-}
-
diff --git a/keyboards/handwired/frenchdev/keymaps/default/keymap.c b/keyboards/handwired/frenchdev/keymaps/default/keymap.c
index 9912a3e98a..3d0f1fbfb8 100644
--- a/keyboards/handwired/frenchdev/keymaps/default/keymap.c
+++ b/keyboards/handwired/frenchdev/keymaps/default/keymap.c
@@ -354,10 +354,6 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
   return MACRO_NONE;
 };
 
-void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
-
-}
-
 void matrix_init_user(void) {
 }
 
diff --git a/keyboards/meira/meira.c b/keyboards/meira/meira.c
index 3ff62a080b..1d0db5e997 100644
--- a/keyboards/meira/meira.c
+++ b/keyboards/meira/meira.c
@@ -89,32 +89,6 @@ void led_set_kb(uint8_t usb_led) {
 	led_set_user(usb_led);
 }
 
-//void action_function(keyrecord_t *event, uint8_t id, uint8_t opt)
-//{
-//#ifdef AUDIO_ENABLE
-//    int8_t sign = 1;
-//#endif
-//    if(id == LFK_ESC_TILDE){
-//        // Send ~ on shift-esc
-//        void (*method)(uint8_t) = (event->event.pressed) ? &add_key : &del_key;
-//        uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT));
-//        method(shifted ? KC_GRAVE : KC_ESCAPE);
-//        send_keyboard_report();
-//    }else if(event->event.pressed){
-//        switch(id){
-//            case LFK_CLEAR:
-//                // Go back to default layer
-//                layer_clear();
-//                break;
-//#ifdef ISSI_ENABLE
-//            case LFK_LED_TEST:
-//                led_test();
-//                break;
-//#endif
-//        }
-//    }
-//}
-
 void reset_keyboard_kb(){
 #ifdef WATCHDOG_ENABLE
     MCUSR = 0;
diff --git a/keyboards/planck/keymaps/yang/keymap.c b/keyboards/planck/keymaps/yang/keymap.c
index e4a7a3312d..477eb50312 100644
--- a/keyboards/planck/keymaps/yang/keymap.c
+++ b/keyboards/planck/keymaps/yang/keymap.c
@@ -56,10 +56,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 }
 };
 
-/*enum function_id {
-
-};*/
-
 const uint16_t PROGMEM fn_actions[] = {
   [0]  = ACTION_LAYER_TAP_KEY(_RGB, KC_SPC),
 };
@@ -81,9 +77,3 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
       }
     return MACRO_NONE;
 };
-
-void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
-  switch (id) {
-
-  }
-}
diff --git a/keyboards/whitefox/keymaps/kim-kim/keymap.c b/keyboards/whitefox/keymaps/kim-kim/keymap.c
index 200098603c..459ec64371 100644
--- a/keyboards/whitefox/keymaps/kim-kim/keymap.c
+++ b/keyboards/whitefox/keymaps/kim-kim/keymap.c
@@ -70,24 +70,3 @@ const uint16_t fn_actions[] = {
     [7] = ACTION_USAGE_CONSUMER(0x1A0),
 
 };
-
-/* custom action function */
-void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
-  /*
-  (void)opt;
-  switch(id) {
-    case ACTION_LEDS_ALL:
-        if(record->event.pressed) {
-          // signal the LED controller thread
-          chMBPost(&led_mailbox, LED_MSG_GAME_TOGGLE, TIME_IMMEDIATE);
-        }
-      break;
-    case ACTION_LEDS_GAME:
-      if(record->event.pressed) {
-        // signal the LED controller thread
-        chMBPost(&led_mailbox, LED_MSG_ALL_TOGGLE, TIME_IMMEDIATE);
-      }
-      break;
-  }
-  */
-}
diff --git a/keyboards/whitefox/keymaps/matt3o/keymap.c b/keyboards/whitefox/keymaps/matt3o/keymap.c
index 136ae65fab..76fb72f8e3 100644
--- a/keyboards/whitefox/keymaps/matt3o/keymap.c
+++ b/keyboards/whitefox/keymaps/matt3o/keymap.c
@@ -69,24 +69,3 @@ const uint16_t fn_actions[] = {
     [7] = ACTION_USAGE_CONSUMER(0x1A0),
 
 };
-
-/* custom action function */
-void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
-  /*
-  (void)opt;
-  switch(id) {
-    case ACTION_LEDS_ALL:
-        if(record->event.pressed) {
-          // signal the LED controller thread
-          chMBPost(&led_mailbox, LED_MSG_GAME_TOGGLE, TIME_IMMEDIATE);
-        }
-      break;
-    case ACTION_LEDS_GAME:
-      if(record->event.pressed) {
-        // signal the LED controller thread
-        chMBPost(&led_mailbox, LED_MSG_ALL_TOGGLE, TIME_IMMEDIATE);
-      }
-      break;
-  }
-  */
-}
diff --git a/tests/basic/keymap.c b/tests/basic/keymap.c
index 3f97c0a0ee..5dd9aaeb6e 100644
--- a/tests/basic/keymap.c
+++ b/tests/basic/keymap.c
@@ -41,6 +41,3 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
     }
     return MACRO_NONE;
 };
-
-void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
-}
\ No newline at end of file