From 276d4be4954ed5f11a79d75b2e7e5a1a80f43b06 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Tue, 29 Dec 2020 19:42:07 -0500 Subject: [PATCH] via: fix compile when vial is not enabled --- quantum/via.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quantum/via.c b/quantum/via.c index 3191e965d3..9772ea2b5e 100644 --- a/quantum/via.c +++ b/quantum/via.c @@ -438,7 +438,9 @@ void raw_hid_receive(uint8_t *data, uint8_t length) { break; } } +#ifdef VIAL_ENABLE skip: +#endif // Return the same buffer, optionally with values changed // (i.e. returning state to the host, or the unhandled state). raw_hid_send(data, length);