Changeset a9b6bec in mainline for uspace/lib/usbvirt/main.c


Ignore:
Timestamp:
2010-12-14T20:19:41Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
11658b64
Parents:
37f7cfe (diff), 228e490 (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.
Message:

Merge mainline changes

Extra changes: ipcarg_t is sysarg_t and
IPC_GET_METHOD is IPC_GET_IMETHOD.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbvirt/main.c

    r37f7cfe ra9b6bec  
    5252        int vhcd_phone;
    5353        /** Device id. */
    54         ipcarg_t id;
     54        sysarg_t id;
    5555        /** Linked-list member. */
    5656        link_t link;
     
    8080
    8181/** Find virtual device wrapper by its id. */
    82 static virtual_device_t *find_device_by_id(ipcarg_t id)
     82static virtual_device_t *find_device_by_id(sysarg_t id)
    8383{
    8484        if (list_empty(&device_list)) {
     
    222222        }
    223223       
    224         ipcarg_t phonehash;
     224        sysarg_t phonehash;
    225225        rc = ipc_connect_to_me(hcd_phone, 0, 0, 0, &phonehash);
    226226        if (rc != EOK) {
Note: See TracChangeset for help on using the changeset viewer.