summary refs log tree commit diff
path: root/quantum/keyboard.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-10-07 23:14:26 +0100
committerGitHub <noreply@github.com>2021-10-07 23:14:26 +0100
commite0d688d4c8040302fcacb735350c95fe6be4dbde (patch)
tree0518f3ffea7851479c8169ba3bd9fd1d0308fa1d /quantum/keyboard.c
parentc39170b7ef433ee86230caad6263c59bb727ed5a (diff)
Move converter specific tmk_core protocols (#14743)
Diffstat (limited to 'quantum/keyboard.c')
-rw-r--r--quantum/keyboard.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c
index ee7fa2bd4b..401abdd8fa 100644
--- a/quantum/keyboard.c
+++ b/quantum/keyboard.c
@@ -43,9 +43,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #ifdef SERIAL_MOUSE_ENABLE
 #    include "serial_mouse.h"
 #endif
-#ifdef ADB_MOUSE_ENABLE
-#    include "adb.h"
-#endif
 #ifdef RGBLIGHT_ENABLE
 #    include "rgblight.h"
 #endif
@@ -322,9 +319,6 @@ void keyboard_init(void) {
 #ifdef SERIAL_MOUSE_ENABLE
     serial_mouse_init();
 #endif
-#ifdef ADB_MOUSE_ENABLE
-    adb_mouse_init();
-#endif
 #ifdef BACKLIGHT_ENABLE
     backlight_init();
 #endif
@@ -504,10 +498,6 @@ MATRIX_LOOP_END:
     serial_mouse_task();
 #endif
 
-#ifdef ADB_MOUSE_ENABLE
-    adb_mouse_task();
-#endif
-
 #ifdef POINTING_DEVICE_ENABLE
     pointing_device_task();
 #endif