From 08717157dbccacd3723567a89f022644cab74671 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sun, 17 Nov 2019 18:39:03 -0700 Subject: [PATCH] Do not debug touchpad values --- src/board/system76/galp3-c/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/board/system76/galp3-c/main.c b/src/board/system76/galp3-c/main.c index 3f56123..0367335 100644 --- a/src/board/system76/galp3-c/main.c +++ b/src/board/system76/galp3-c/main.c @@ -403,7 +403,7 @@ void touchpad_event(struct Ps2 * ps2) { *(ps2->status) = status; if (status & (1 << 3)) { uint8_t data = *(ps2->data); - printf("touchpad: %02X\n", data); + //printf("touchpad: %02X\n", data); kbc_mouse(&KBC, data, 1000); } }