Removed references to the load_driver_symbols() function.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2687 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
1783edd55c
commit
6f7be67a0f
@ -165,11 +165,8 @@ _EXPORT status_t init_hardware(void)
|
||||
void * sfmptr;
|
||||
|
||||
#if SERIAL_DEBUGGING
|
||||
int rv;
|
||||
|
||||
// XXX - switch on/off at top of file...
|
||||
set_dprintf_enabled(true);
|
||||
rv = load_driver_symbols(DRIVER_NAME);
|
||||
#endif
|
||||
|
||||
// get a pointer to the driver settings...
|
||||
|
@ -1019,7 +1019,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
||||
switch(op) {
|
||||
case B_MODULE_INIT:
|
||||
printf("core: B_MODULE_INIT\n");
|
||||
load_driver_symbols("core");
|
||||
break;
|
||||
|
||||
case B_MODULE_UNINIT:
|
||||
|
@ -919,7 +919,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
||||
get_module(NET_CORE_MODULE_NAME, (module_info**)&core);
|
||||
if (!core)
|
||||
return B_ERROR;
|
||||
load_driver_symbols("ethernet");
|
||||
return B_OK;
|
||||
|
||||
case B_MODULE_UNINIT:
|
||||
|
@ -448,7 +448,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
||||
get_module(NET_CORE_MODULE_NAME, (module_info **) &core);
|
||||
if (!core)
|
||||
return B_ERROR;
|
||||
load_driver_symbols("icmp");
|
||||
return B_OK;
|
||||
|
||||
case B_MODULE_UNINIT:
|
||||
|
@ -1221,7 +1221,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
||||
get_module(NET_CORE_MODULE_NAME, (module_info **) &core);
|
||||
if (!core)
|
||||
return B_ERROR;
|
||||
load_driver_symbols("ipv4");
|
||||
return B_OK;
|
||||
|
||||
case B_MODULE_UNINIT:
|
||||
|
Loading…
Reference in New Issue
Block a user