1
0
Fork 0

Remove SERIAL_MOUSE (#14969)

This commit is contained in:
Joel Challis 2021-10-28 02:43:51 +01:00 committed by GitHub
parent b780c797be
commit 780e763c13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 291 deletions

View file

@ -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