diff options
author | Joel Challis <git@zvecr.com> | 2021-10-28 02:43:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 02:43:51 +0100 |
commit | 780e763c13052138e4d9ad379c4138c3b2c344a7 (patch) | |
tree | 529979df4d2e44a1c6c57cde14b8ec2e58cb41d6 /quantum | |
parent | b780c797beb726839e99e3f4054f9b4c33331cdc (diff) | |
download | qmk_firmware-780e763c13052138e4d9ad379c4138c3b2c344a7.tar.gz qmk_firmware-780e763c13052138e4d9ad379c4138c3b2c344a7.zip |
Remove SERIAL_MOUSE (#14969)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/keyboard.c | 10 |
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 |