diff options
author | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2017-02-12 17:52:09 +0700 |
---|---|---|
committer | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2017-02-12 17:52:09 +0700 |
commit | 97e6bb5a4e1238db4cfab7f73c8064585a8a90f0 (patch) | |
tree | 168731a9c82defcea25f0b8c9475c4d476b1d1c2 | |
parent | bc1308c112ebdd2089b36d7d3289308301bd6832 (diff) | |
parent | a0c2305bd1153d9d578d73effd33896c2dbc26c8 (diff) |
Merge branch 'master' into promethium
-rw-r--r-- | tmk_core/protocol/ps2_mouse.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tmk_core/protocol/ps2_mouse.h b/tmk_core/protocol/ps2_mouse.h index 3c93a46342..eeeffe4d80 100644 --- a/tmk_core/protocol/ps2_mouse.h +++ b/tmk_core/protocol/ps2_mouse.h @@ -23,7 +23,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define PS2_MOUSE_SEND(command, message) \ do { \ - uint8_t rcv = ps2_host_send(command); \ + __attribute__ ((unused)) uint8_t rcv = ps2_host_send(command); \ if (debug_mouse) { \ print((message)); \ xprintf(" command: %X, result: %X, error: %X \n", command, rcv, ps2_error); \ @@ -55,13 +55,14 @@ do { \ #define PS2_MOUSE_RECEIVE(message) \ do { \ - uint8_t rcv = ps2_host_recv_response(); \ + __attribute__ ((unused)) uint8_t rcv = ps2_host_recv_response(); \ if (debug_mouse) { \ print((message)); \ xprintf(" result: %X, error: %X \n", rcv, ps2_error); \ } \ } while(0) +__attribute__ ((unused)) static enum ps2_mouse_mode_e { PS2_MOUSE_STREAM_MODE, PS2_MOUSE_REMOTE_MODE, |