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:
@@ -165,11 +165,8 @@ _EXPORT status_t init_hardware(void)
|
|||||||
void * sfmptr;
|
void * sfmptr;
|
||||||
|
|
||||||
#if SERIAL_DEBUGGING
|
#if SERIAL_DEBUGGING
|
||||||
int rv;
|
|
||||||
|
|
||||||
// XXX - switch on/off at top of file...
|
// XXX - switch on/off at top of file...
|
||||||
set_dprintf_enabled(true);
|
set_dprintf_enabled(true);
|
||||||
rv = load_driver_symbols(DRIVER_NAME);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// get a pointer to the driver settings...
|
// get a pointer to the driver settings...
|
||||||
|
|||||||
@@ -1019,7 +1019,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
|||||||
switch(op) {
|
switch(op) {
|
||||||
case B_MODULE_INIT:
|
case B_MODULE_INIT:
|
||||||
printf("core: B_MODULE_INIT\n");
|
printf("core: B_MODULE_INIT\n");
|
||||||
load_driver_symbols("core");
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case B_MODULE_UNINIT:
|
case B_MODULE_UNINIT:
|
||||||
|
|||||||
@@ -919,7 +919,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
|||||||
get_module(NET_CORE_MODULE_NAME, (module_info**)&core);
|
get_module(NET_CORE_MODULE_NAME, (module_info**)&core);
|
||||||
if (!core)
|
if (!core)
|
||||||
return B_ERROR;
|
return B_ERROR;
|
||||||
load_driver_symbols("ethernet");
|
|
||||||
return B_OK;
|
return B_OK;
|
||||||
|
|
||||||
case B_MODULE_UNINIT:
|
case B_MODULE_UNINIT:
|
||||||
|
|||||||
@@ -448,7 +448,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
|||||||
get_module(NET_CORE_MODULE_NAME, (module_info **) &core);
|
get_module(NET_CORE_MODULE_NAME, (module_info **) &core);
|
||||||
if (!core)
|
if (!core)
|
||||||
return B_ERROR;
|
return B_ERROR;
|
||||||
load_driver_symbols("icmp");
|
|
||||||
return B_OK;
|
return B_OK;
|
||||||
|
|
||||||
case B_MODULE_UNINIT:
|
case B_MODULE_UNINIT:
|
||||||
|
|||||||
@@ -1221,7 +1221,6 @@ _EXPORT status_t std_ops(int32 op, ...)
|
|||||||
get_module(NET_CORE_MODULE_NAME, (module_info **) &core);
|
get_module(NET_CORE_MODULE_NAME, (module_info **) &core);
|
||||||
if (!core)
|
if (!core)
|
||||||
return B_ERROR;
|
return B_ERROR;
|
||||||
load_driver_symbols("ipv4");
|
|
||||||
return B_OK;
|
return B_OK;
|
||||||
|
|
||||||
case B_MODULE_UNINIT:
|
case B_MODULE_UNINIT:
|
||||||
|
|||||||
Reference in New Issue
Block a user