Changeset f2962621 in mainline for uspace/lib/net/il/arp_remote.c


Ignore:
Timestamp:
2010-12-17T10:14:01Z (13 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6e5dc07
Parents:
9223dc5c (diff), 11658b64 (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 with usb/development

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/il/arp_remote.c

    r9223dc5c rf2962621  
    8686{
    8787        aid_t message_id;
    88         ipcarg_t result;
     88        sysarg_t result;
    8989
    9090        message_id = async_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS,
    91             (ipcarg_t) device_id, protocol, NULL);
     91            (sysarg_t) device_id, protocol, NULL);
    9292        measured_strings_send(arp_phone, address, 1);
    9393        async_wait_for(message_id, &result);
     
    106106{
    107107        return (int) async_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE,
    108             (ipcarg_t) device_id);
     108            (sysarg_t) device_id);
    109109}
    110110
     
    136136{
    137137        aid_t message_id;
    138         ipcarg_t result;
     138        sysarg_t result;
    139139
    140140        message_id = async_send_3(arp_phone, NET_ARP_DEVICE,
    141             (ipcarg_t) device_id, protocol, netif, NULL);
     141            (sysarg_t) device_id, protocol, netif, NULL);
    142142        measured_strings_send(arp_phone, address, 1);
    143143        async_wait_for(message_id, &result);
Note: See TracChangeset for help on using the changeset viewer.