summaryrefslogtreecommitdiff
path: root/quantum/keyboard.c
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-10-28 02:43:51 +0100
committerGitHub <noreply@github.com>2021-10-28 02:43:51 +0100
commit780e763c13052138e4d9ad379c4138c3b2c344a7 (patch)
tree529979df4d2e44a1c6c57cde14b8ec2e58cb41d6 /quantum/keyboard.c
parentb780c797beb726839e99e3f4054f9b4c33331cdc (diff)
Remove SERIAL_MOUSE (#14969)
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 f8e36994d2..030fec2d3e 100644
--- a/quantum/keyboard.c
+++ b/quantum/keyboard.c
@@ -40,9 +40,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifdef PS2_MOUSE_ENABLE
# include "ps2_mouse.h"
#endif
-#ifdef SERIAL_MOUSE_ENABLE
-# include "serial_mouse.h"
-#endif
#ifdef RGBLIGHT_ENABLE
# include "rgblight.h"
#endif
@@ -310,9 +307,6 @@ void keyboard_init(void) {
#ifdef PS2_MOUSE_ENABLE
ps2_mouse_init();
#endif
-#ifdef SERIAL_MOUSE_ENABLE
- serial_mouse_init();
-#endif
#ifdef BACKLIGHT_ENABLE
backlight_init();
#endif
@@ -490,10 +484,6 @@ MATRIX_LOOP_END:
ps2_mouse_task();
#endif
-#ifdef SERIAL_MOUSE_ENABLE
- serial_mouse_task();
-#endif
-
#ifdef POINTING_DEVICE_ENABLE
pointing_device_task();
#endif