Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/netif/dp8390/dp8390_module.c

    r46d4d9f r3a5d238f  
    103103        netif_device_t * device;
    104104        dpeth_t * dep;
    105         packet_t *received;
     105        packet_t received;
    106106        device_id_t device_id;
    107107        int phone;
     
    157157}
    158158
    159 int netif_get_device_stats(device_id_t device_id, device_stats_t *stats)
    160 {
     159int netif_get_device_stats(device_id_t device_id, device_stats_ref stats){
    161160        netif_device_t * device;
    162161        eth_stat_t * de_stat;
     
    186185}
    187186
    188 int netif_get_addr_message(device_id_t device_id, measured_string_t *address){
     187int netif_get_addr_message(device_id_t device_id, measured_string_ref address){
    189188        netif_device_t * device;
    190189        int rc;
     
    247246}
    248247
    249 int netif_send_message(device_id_t device_id, packet_t *packet, services_t sender){
    250         netif_device_t * device;
    251         dpeth_t * dep;
    252         packet_t *next;
     248int netif_send_message(device_id_t device_id, packet_t packet, services_t sender){
     249        netif_device_t * device;
     250        dpeth_t * dep;
     251        packet_t next;
    253252        int rc;
    254253
Note: See TracChangeset for help on using the changeset viewer.