Changeset 76d0981d in mainline for uspace/drv
- Timestamp:
- 2018-04-12T12:57:20Z (8 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)
- Location:
- uspace/drv
- Files:
-
- 5 edited
-
bus/usb/uhci/hc.c (modified) (2 diffs)
-
char/ski-con/ski-con.c (modified) (1 diff)
-
hid/ps2mouse/ps2mouse.c (modified) (2 diffs)
-
hid/usbhid/mouse/mousedev.c (modified) (2 diffs)
-
intctl/obio/obio.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/hc.c
r9c514be r76d0981d 44 44 #include <macros.h> 45 45 #include <mem.h> 46 #include <stdbool.h> 46 47 #include <stdlib.h> 47 48 #include <stdint.h> … … 607 608 instance->transfers_##queue.queue_head 608 609 609 while ( 1) {610 while (true) { 610 611 const uint16_t cmd = pio_read_16(&instance->registers->usbcmd); 611 612 const uint16_t sts = pio_read_16(&instance->registers->usbsts); -
uspace/drv/char/ski-con/ski-con.c
r9c514be r76d0981d 134 134 errno_t rc; 135 135 136 while ( 1) {137 while ( 1) {136 while (true) { 137 while (true) { 138 138 c = ski_con_getchar(); 139 139 if (c == 0) -
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); -
uspace/drv/hid/usbhid/mouse/mousedev.c
r9c514be r76d0981d 43 43 #include <errno.h> 44 44 #include <async.h> 45 #include <stdbool.h> 45 46 #include <str_error.h> 46 47 #include <ipc/mouseev.h> … … 299 300 300 301 /* Break from within. */ 301 while ( 1) {302 while (true) { 302 303 field = usb_hid_report_get_sibling( 303 304 report, field, path, -
uspace/drv/intctl/obio/obio.c
r9c514be r76d0981d 86 86 obio = (obio_t *)ddf_dev_data_get(ddf_fun_get_dev((ddf_fun_t *)arg)); 87 87 88 while ( 1) {88 while (true) { 89 89 int inr; 90 90
Note:
See TracChangeset
for help on using the changeset viewer.
