From 706ff78e48e76fb178acfbe598b5f5da6546495d Mon Sep 17 00:00:00 2001 From: Art Yerkes Date: Mon, 4 Oct 2004 18:31:40 +0000 Subject: [PATCH] Removed unneeded DriverObject parameter to IPStartup. svn path=/trunk/; revision=11183 --- reactos/drivers/net/tcpip/include/ip.h | 7 ++----- reactos/drivers/net/tcpip/tcpip/main.c | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/reactos/drivers/net/tcpip/include/ip.h b/reactos/drivers/net/tcpip/include/ip.h index 7c84b47dead..b7e1e6bba33 100644 --- a/reactos/drivers/net/tcpip/include/ip.h +++ b/reactos/drivers/net/tcpip/include/ip.h @@ -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); diff --git a/reactos/drivers/net/tcpip/tcpip/main.c b/reactos/drivers/net/tcpip/tcpip/main.c index 4477bef5e8f..e26e145d510 100644 --- a/reactos/drivers/net/tcpip/tcpip/main.c +++ b/reactos/drivers/net/tcpip/tcpip/main.c @@ -821,7 +821,7 @@ DriverEntry( LANStartup(); /* Initialize network level protocol subsystem */ - IPStartup(DriverObject, RegistryPath); + IPStartup(RegistryPath); /* Initialize transport level protocol subsystems */ DGStartup();