Ignore:
File:
1 edited

Legend:

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

    r3a5d238f r46d4d9f  
    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_ref stats){
     159int netif_get_device_stats(device_id_t device_id, device_stats_t *stats)
     160{
    160161        netif_device_t * device;
    161162        eth_stat_t * de_stat;
     
    185186}
    186187
    187 int netif_get_addr_message(device_id_t device_id, measured_string_ref address){
     188int netif_get_addr_message(device_id_t device_id, measured_string_t *address){
    188189        netif_device_t * device;
    189190        int rc;
     
    246247}
    247248
    248 int 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;
     249int 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;
    252253        int rc;
    253254
Note: See TracChangeset for help on using the changeset viewer.