Staging: hv: netvsc_drv: Get rid of some unnecessary/dead code from rndis_filter.c
After the cleanup that has been done, some code in rndis_filter.c is no longer needed; get rid of it. Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Abhishek Kane <v-abkane@microsoft.com> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
fde0ef9b23
commit
c7620cd029
1 changed files with 0 additions and 16 deletions
|
@ -30,11 +30,6 @@
|
|||
#include "hyperv.h"
|
||||
#include "hyperv_net.h"
|
||||
|
||||
/* Data types */
|
||||
struct rndis_filter_driver_object {
|
||||
/* The original driver */
|
||||
struct netvsc_driver inner_drv;
|
||||
};
|
||||
|
||||
enum rndis_device_state {
|
||||
RNDIS_DEV_UNINITIALIZED = 0,
|
||||
|
@ -79,8 +74,6 @@ static void rndis_filter_send_completion(void *ctx);
|
|||
static void rndis_filter_send_request_completion(void *ctx);
|
||||
|
||||
|
||||
/* The one and only */
|
||||
static struct rndis_filter_driver_object rndis_filter;
|
||||
|
||||
static struct rndis_device *get_rndis_device(void)
|
||||
{
|
||||
|
@ -578,15 +571,6 @@ Exit:
|
|||
int rndis_filter_init(struct netvsc_driver *drv)
|
||||
{
|
||||
|
||||
/* Driver->Context = rndisDriver; */
|
||||
|
||||
memset(&rndis_filter, 0, sizeof(struct rndis_filter_driver_object));
|
||||
|
||||
/*rndisDriver->Driver = Driver;
|
||||
|
||||
ASSERT(Driver->OnLinkStatusChanged);
|
||||
rndisDriver->OnLinkStatusChanged = Driver->OnLinkStatusChanged;*/
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue