Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/netif/netif_module.h

    raadf01e r9c9c6a9  
    5050/** Initializes the specific module.
    5151 */
    52 int netif_initialize(void);
     52int     netif_initialize( void );
    5353
    5454/** Probes the existence of the device.
     
    6060 *  @returns Other error codes as defined for the specific module message implementation.
    6161 */
    62 int netif_probe_message(device_id_t device_id, int irq, uintptr_t io);
     62int     netif_probe_message( device_id_t device_id, int irq, uintptr_t io );
    6363
    6464/** Sends the packet queue.
     
    7171 *  @returns Other error codes as defined for the specific module message implementation.
    7272 */
    73 int netif_send_message(device_id_t device_id, packet_t packet, services_t sender);
     73int     netif_send_message( device_id_t device_id, packet_t packet, services_t sender );
    7474
    7575/** Starts the device.
     
    7979 *  @returns Other error codes as defined for the specific module message implementation.
    8080 */
    81 int netif_start_message(device_ref device);
     81int     netif_start_message( device_ref device );
    8282
    8383/** Stops the device.
     
    8787 *  @returns Other error codes as defined for the specific module message implementation.
    8888 */
    89 int netif_stop_message(device_ref device);
     89int     netif_stop_message( device_ref device );
    9090
    9191/** Returns the device local hardware address.
     
    9898 *  @returns Other error codes as defined for the specific module message implementation.
    9999 */
    100 int netif_get_addr_message(device_id_t device_id, measured_string_ref address);
     100int     netif_get_addr_message( device_id_t device_id, measured_string_ref address );
    101101
    102102/** Processes the netif driver specific message.
     
    110110 *  @returns Other error codes as defined for the specific module message implementation.
    111111 */
    112 int netif_specific_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);
     112int     netif_specific_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
    113113
    114114/** Returns the device usage statistics.
     
    119119 *  @returns Other error codes as defined for the specific module message implementation.
    120120 */
    121 int netif_get_device_stats(device_id_t device_id, device_stats_ref stats);
     121int     netif_get_device_stats( device_id_t device_id, device_stats_ref stats );
    122122
    123123#endif
Note: See TracChangeset for help on using the changeset viewer.