Changeset 76d0981d in mainline for uspace/drv/hid/ps2mouse/ps2mouse.c
- Timestamp:
- 2018-04-12T12:57:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3bacee1
- Parents:
- 9c514be
- git-author:
- Jiri Svoboda <jiri@…> (2018-04-11 18:18:43)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-04-12 12:57:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/ps2mouse/ps2mouse.c
r9c514be r76d0981d 254 254 255 255 bool buttons[PS2_BUTTON_COUNT] = {}; 256 while ( 1) {256 while (true) { 257 257 uint8_t packet[PS2_BUFSIZE] = {}; 258 258 rc = ps2_mouse_read_packet(mouse, packet, PS2_BUFSIZE); … … 306 306 307 307 bool buttons[INTELLIMOUSE_BUTTON_COUNT] = {}; 308 while ( 1) {308 while (true) { 309 309 uint8_t packet[INTELLIMOUSE_BUFSIZE] = {}; 310 310 rc = ps2_mouse_read_packet(mouse, packet, INTELLIMOUSE_BUFSIZE);
Note:
See TracChangeset
for help on using the changeset viewer.