]> Pileus Git - ~andy/linux/commitdiff
staging: hv: Remove unnecessary ASSERTs in netvsc_initialize()
authorHaiyang Zhang <haiyangz@microsoft.com>
Fri, 18 Feb 2011 23:05:52 +0000 (15:05 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 23 Feb 2011 21:22:26 +0000 (13:22 -0800)
These fields have been assigned in netvsc_drv_init() before calling
netvsc_initialize(), so there is no need to check them.
The ASSERTs were already commented out, and this patch removes
them.

Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/netvsc.c

index 8c6d4ae54be2072aebf1f4fe57be2a424a748328..f21a59db169c15d629a55c184a4311a6a733a45f 100644 (file)
@@ -188,11 +188,6 @@ int netvsc_initialize(struct hv_driver *drv)
        drv->name = driver_name;
        memcpy(&drv->dev_type, &netvsc_device_type, sizeof(struct hv_guid));
 
-       /* Make sure it is set by the caller */
-       /* FIXME: These probably should still be tested in some way */
-       /* ASSERT(driver->OnReceiveCallback); */
-       /* ASSERT(driver->OnLinkStatusChanged); */
-
        /* Setup the dispatch table */
        driver->base.dev_add    = netvsc_device_add;
        driver->base.dev_rm     = netvsc_device_remove;