Ignore:
Timestamp:
2010-03-13T12:17:02Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ba20a6b
Parents:
d0febca (diff), 2070570 (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/srv/net/netif/netif_standalone.c

    rd0febca r7715994  
    5050 *  @returns Other error codes as defined for each specific module message function.
    5151 */
    52 int     module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
     52int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);
    5353
    5454/** Starts the network interface module.
     
    5858 *  @returns Other error codes as defined for each specific module message function.
    5959 */
    60 int     module_start( async_client_conn_t client_connection );
     60int module_start(async_client_conn_t client_connection);
    6161
    62 int     module_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ){
    63         return netif_message( callid, call, answer, answer_count );
     62int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
     63        return netif_message(callid, call, answer, answer_count);
    6464}
    6565
    66 int     module_start( async_client_conn_t client_connection ){
     66int module_start(async_client_conn_t client_connection){
    6767        ERROR_DECLARE;
    6868
    69         ERROR_PROPAGATE( netif_init_module( client_connection ));
     69        ERROR_PROPAGATE(netif_init_module(client_connection));
    7070        return netif_run_module();
    7171}
Note: See TracChangeset for help on using the changeset viewer.