Changeset b61d47d in mainline for uspace/srv/console/console.c
- Timestamp:
- 2007-12-02T20:00:14Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 90c35436
- Parents:
- 8df2eab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/console/console.c
r8df2eab rb61d47d 483 483 /* Connect to keyboard driver */ 484 484 485 kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0 );485 kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0, 0); 486 486 while (kbd_phone < 0) { 487 487 usleep(10000); 488 kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0 );488 kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0, 0); 489 489 } 490 490 … … 495 495 /* Connect to framebuffer driver */ 496 496 497 fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0 );497 fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0, 0); 498 498 while (fb_info.phone < 0) { 499 499 usleep(10000); 500 fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0 );500 fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0, 0); 501 501 } 502 502
Note:
See TracChangeset
for help on using the changeset viewer.