]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
Staging: hv: Add remove() function to struct hv_driver
authorK. Y. Srinivasan <kys@microsoft.com>
Fri, 29 Apr 2011 20:45:11 +0000 (13:45 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 3 May 2011 20:31:29 +0000 (13:31 -0700)
Add remove() function to struct hv_driver.

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>
drivers/staging/hv/vmbus_api.h

index 4ffb73969e4199e618cedf768a1b3ecbba98123f..3ae0c4633bb8907f79d9143ca2a6d96ab2ced473 100644 (file)
@@ -101,6 +101,7 @@ struct hv_driver {
        void (*cleanup)(struct hv_driver *driver);
 
        int (*probe)(struct hv_device *);
+       int (*remove)(struct hv_device *);
 
 };