aboutsummaryrefslogtreecommitdiff
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)
downloadqmk_firmware-780e763c13052138e4d9ad379c4138c3b2c344a7.tar.gz
qmk_firmware-780e763c13052138e4d9ad379c4138c3b2c344a7.zip
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 f8e36994d..030fec2d3 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/>.
40#ifdef PS2_MOUSE_ENABLE 40#ifdef PS2_MOUSE_ENABLE
41# include "ps2_mouse.h" 41# include "ps2_mouse.h"
42#endif 42#endif
43#ifdef SERIAL_MOUSE_ENABLE
44# include "serial_mouse.h"
45#endif
46#ifdef RGBLIGHT_ENABLE 43#ifdef RGBLIGHT_ENABLE
47# include "rgblight.h" 44# include "rgblight.h"
48#endif 45#endif
@@ -310,9 +307,6 @@ void keyboard_init(void) {
310#ifdef PS2_MOUSE_ENABLE 307#ifdef PS2_MOUSE_ENABLE
311 ps2_mouse_init(); 308 ps2_mouse_init();
312#endif 309#endif
313#ifdef SERIAL_MOUSE_ENABLE
314 serial_mouse_init();
315#endif
316#ifdef BACKLIGHT_ENABLE 310#ifdef BACKLIGHT_ENABLE
317 backlight_init(); 311 backlight_init();
318#endif 312#endif
@@ -490,10 +484,6 @@ MATRIX_LOOP_END:
490 ps2_mouse_task(); 484 ps2_mouse_task();
491#endif 485#endif
492 486
493#ifdef SERIAL_MOUSE_ENABLE
494 serial_mouse_task();
495#endif
496
497#ifdef POINTING_DEVICE_ENABLE 487#ifdef POINTING_DEVICE_ENABLE
498 pointing_device_task(); 488 pointing_device_task();
499#endif 489#endif