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:
Axel Dörfler 2003-02-11 19:32:08 +00:00
parent 1783edd55c
commit 6f7be67a0f
5 changed files with 0 additions and 7 deletions

View File

@ -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...

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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: