X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fmodules.c;h=a206cf97ea33a21899d1d39984e7019244f125b6;hb=fbb51904de075386178cc6bb14717132d3b2153d;hp=93de973d0b6b56081872beba8876a152ca7900be;hpb=76504d6eb355267746921fb49ebd191219f4cb84;p=tpg%2Facess2.git diff --git a/Kernel/modules.c b/Kernel/modules.c index 93de973d..a206cf97 100644 --- a/Kernel/modules.c +++ b/Kernel/modules.c @@ -156,7 +156,6 @@ int Module_LoadFile(char *Path, char *ArgString) // Check for EDI Driver if( Binary_FindSymbol(base, "driver_init", NULL ) != 0 ) { - Binary_Relocate(base); // Relocate return Module_InitEDI( base ); // And intialise } #endif @@ -164,7 +163,6 @@ int Module_LoadFile(char *Path, char *ArgString) #if USE_UDI if( Binary_FindSymbol(base, "udi_init_info", NULL ) != 0 ) { - Binary_Relocate(base); // Relocate return UDI_LoadDriver( base ); // And intialise } #endif