Removed unneeded DriverObject parameter to IPStartup.

svn path=/trunk/; revision=11183
This commit is contained in:
Art Yerkes 2004-10-04 18:31:40 +00:00
parent 49871ae71b
commit 706ff78e48
2 changed files with 3 additions and 6 deletions

View file

@ -252,12 +252,9 @@ VOID IPRegisterProtocol(
UINT ProtocolNumber,
IP_PROTOCOL_HANDLER Handler);
NTSTATUS IPStartup(
PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath);
NTSTATUS IPStartup(PUNICODE_STRING RegistryPath);
NTSTATUS IPShutdown(
VOID);
NTSTATUS IPShutdown(VOID);

View file

@ -821,7 +821,7 @@ DriverEntry(
LANStartup();
/* Initialize network level protocol subsystem */
IPStartup(DriverObject, RegistryPath);
IPStartup(RegistryPath);
/* Initialize transport level protocol subsystems */
DGStartup();