mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Removed unneeded DriverObject parameter to IPStartup.
svn path=/trunk/; revision=11183
This commit is contained in:
parent
49871ae71b
commit
706ff78e48
2 changed files with 3 additions and 6 deletions
|
@ -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);
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -821,7 +821,7 @@ DriverEntry(
|
|||
LANStartup();
|
||||
|
||||
/* Initialize network level protocol subsystem */
|
||||
IPStartup(DriverObject, RegistryPath);
|
||||
IPStartup(RegistryPath);
|
||||
|
||||
/* Initialize transport level protocol subsystems */
|
||||
DGStartup();
|
||||
|
|
Loading…
Reference in a new issue