Changes in uspace/srv/hid/console/console.c [15f3c3f:b366a6f4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
r15f3c3f rb366a6f4 53 53 #include <sysinfo.h> 54 54 #include <event.h> 55 #include < loc.h>55 #include <devmap.h> 56 56 #include <fcntl.h> 57 57 #include <vfs/vfs.h> … … 81 81 size_t index; /**< Console index */ 82 82 size_t refcount; /**< Connection reference count */ 83 service_id_t service_id; /**< Service ID*/83 devmap_handle_t devmap_handle; /**< Device handle */ 84 84 keybuffer_t keybuffer; /**< Buffer for incoming keys. */ 85 85 screenbuffer_t scr; /**< Screenbuffer for saving screen … … 357 357 console_serialize_end(); 358 358 359 if ( __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE)) {359 if (console_kcon()) { 360 360 prev_console = active_console; 361 361 active_console = kernel_console; … … 582 582 continue; 583 583 584 if (consoles[i]. service_id == (service_id_t) IPC_GET_ARG1(*icall)) {584 if (consoles[i].devmap_handle == (devmap_handle_t) IPC_GET_ARG1(*icall)) { 585 585 cons = &consoles[i]; 586 586 break; … … 711 711 console_serialize_start(); 712 712 continue; 713 case CONSOLE_KCON_ENABLE:714 change_console(kernel_console);715 break;716 713 } 717 714 async_answer_3(callid, EOK, arg1, arg2, arg3); … … 724 721 } 725 722 726 static async_sess_t *connect_input(const char * svc_path)723 static async_sess_t *connect_input(const char *dev_path) 727 724 { 728 725 async_sess_t *sess; 729 726 async_exch_t *exch; 730 service_id_t service_id;731 732 int rc = loc_service_get_id(svc_path, &service_id, 0);727 devmap_handle_t handle; 728 729 int rc = devmap_device_get_handle(dev_path, &handle, 0); 733 730 if (rc == EOK) { 734 sess = loc_service_connect(EXCHANGE_ATOMIC, service_id, 0);731 sess = devmap_device_connect(EXCHANGE_ATOMIC, handle, 0); 735 732 if (sess == NULL) { 736 733 printf("%s: Failed to connect to input server\n", NAME); … … 776 773 } 777 774 778 /* Register server */779 int rc = loc_server_register(NAME, client_connection);775 /* Register driver */ 776 int rc = devmap_driver_register(NAME, client_connection); 780 777 if (rc < 0) { 781 printf("%s: Unable to register server (%d)\n", NAME, rc);778 printf("%s: Unable to register driver (%d)\n", NAME, rc); 782 779 return false; 783 780 } … … 823 820 consoles[i].refcount = 0; 824 821 825 char vc[ LOC_NAME_MAXLEN + 1];826 snprintf(vc, LOC_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i);822 char vc[DEVMAP_NAME_MAXLEN + 1]; 823 snprintf(vc, DEVMAP_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i); 827 824 828 if ( loc_service_register(vc, &consoles[i].service_id) != EOK) {829 printf("%s: Unable to register service %s\n", NAME, vc);825 if (devmap_device_register(vc, &consoles[i].devmap_handle) != EOK) { 826 printf("%s: Unable to register device %s\n", NAME, vc); 830 827 return false; 831 828 } 832 829 } 833 830 } 834 835 /* Disable kernel output to the console */836 __SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE);837 831 838 832 /* Initialize the screen */
Note:
See TracChangeset
for help on using the changeset viewer.