Changeset 3e01316f in mainline for uspace/srv/hid/console/console.c
- Timestamp:
- 2011-08-17T18:04:50Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0cf27ee
- Parents:
- e898296d (diff), e6165be (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
re898296d r3e01316f 53 53 #include <sysinfo.h> 54 54 #include <event.h> 55 #include < devmap.h>55 #include <loc.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 devmap_handle_t devmap_handle; /**< Device handle*/83 service_id_t service_id; /**< Service ID */ 84 84 keybuffer_t keybuffer; /**< Buffer for incoming keys. */ 85 85 screenbuffer_t scr; /**< Screenbuffer for saving screen … … 582 582 continue; 583 583 584 if (consoles[i]. devmap_handle == (devmap_handle_t) IPC_GET_ARG1(*icall)) {584 if (consoles[i].service_id == (service_id_t) IPC_GET_ARG1(*icall)) { 585 585 cons = &consoles[i]; 586 586 break; … … 721 721 } 722 722 723 static async_sess_t *connect_input(const char * dev_path)723 static async_sess_t *connect_input(const char *svc_path) 724 724 { 725 725 async_sess_t *sess; 726 726 async_exch_t *exch; 727 devmap_handle_t handle;728 729 int rc = devmap_device_get_handle(dev_path, &handle, 0);727 service_id_t service_id; 728 729 int rc = loc_service_get_id(svc_path, &service_id, 0); 730 730 if (rc == EOK) { 731 sess = devmap_device_connect(EXCHANGE_ATOMIC, handle, 0);731 sess = loc_service_connect(EXCHANGE_ATOMIC, service_id, 0); 732 732 if (sess == NULL) { 733 733 printf("%s: Failed to connect to input server\n", NAME); … … 773 773 } 774 774 775 /* Register driver */776 int rc = devmap_driver_register(NAME, client_connection);775 /* Register server */ 776 int rc = loc_server_register(NAME, client_connection); 777 777 if (rc < 0) { 778 printf("%s: Unable to register driver (%d)\n", NAME, rc);778 printf("%s: Unable to register server (%d)\n", NAME, rc); 779 779 return false; 780 780 } … … 820 820 consoles[i].refcount = 0; 821 821 822 char vc[ DEVMAP_NAME_MAXLEN + 1];823 snprintf(vc, DEVMAP_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i);822 char vc[LOC_NAME_MAXLEN + 1]; 823 snprintf(vc, LOC_NAME_MAXLEN, "%s/vc%zu", NAMESPACE, i); 824 824 825 if ( devmap_device_register(vc, &consoles[i].devmap_handle) != EOK) {826 printf("%s: Unable to register device %s\n", NAME, vc);825 if (loc_service_register(vc, &consoles[i].service_id) != EOK) { 826 printf("%s: Unable to register service %s\n", NAME, vc); 827 827 return false; 828 828 }
Note:
See TracChangeset
for help on using the changeset viewer.