Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4742 → Rev 4743

/branches/network/uspace/srv/net/net/start/netstart.c
44,10 → 44,11
#include <ipc/services.h>
 
#include "../../err.h"
#include "../../messages.h"
#include "../../modules.h"
#include "../../self_test.h"
 
#include "../net_messages.h"
 
/** Networking startup module name.
*/
#define NAME "Networking startup"
88,8 → 89,9
if( ERROR_OCCURRED( ipc_call_sync_0_0( net_phone, NET_NET_STARTUP ))){
printf( "ERROR %d\n", ERROR_CODE );
return ERROR_CODE;
}else{
printf( "OK\n" );
}
printf( "OK\n" );
 
return EOK;
}