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


Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (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

File:
1 edited

Legend:

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

    r13ecdac9 r1affcdf3  
    4040
    4141#include <async.h>
     42#include <async_obsolete.h>
    4243#include <errno.h>
    4344#include <ipc/services.h>
     
    6869int arp_clean_cache_req(int arp_phone)
    6970{
    70         return (int) async_req_0_0(arp_phone, NET_ARP_CLEAN_CACHE);
     71        return (int) async_obsolete_req_0_0(arp_phone, NET_ARP_CLEAN_CACHE);
    7172}
    7273
     
    8788        sysarg_t result;
    8889
    89         message_id = async_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS,
     90        message_id = async_obsolete_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS,
    9091            (sysarg_t) device_id, protocol, NULL);
    9192        measured_strings_send(arp_phone, address, 1);
     
    104105int arp_clear_device_req(int arp_phone, device_id_t device_id)
    105106{
    106         return (int) async_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE,
     107        return (int) async_obsolete_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE,
    107108            (sysarg_t) device_id);
    108109}
     
    137138        sysarg_t result;
    138139
    139         message_id = async_send_3(arp_phone, NET_ARP_DEVICE,
     140        message_id = async_obsolete_send_3(arp_phone, NET_ARP_DEVICE,
    140141            (sysarg_t) device_id, protocol, netif, NULL);
    141142        measured_strings_send(arp_phone, address, 1);
Note: See TracChangeset for help on using the changeset viewer.