summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2011-04-29 20:45:13 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2011-05-03 20:31:30 (GMT)
commitb858e74503e6489190aafb84d16ef75ba267eef2 (patch)
tree45875f6d82d2c36d03f828cf8f6ca6113444374f
parent415b023ab8d6dfb88f106163a7f202a8665fb20a (diff)
downloadlinux-fsl-qoriq-b858e74503e6489190aafb84d16ef75ba267eef2.tar.xz
Staging: hv: Add shutdown() function to struct hv_driver
Add shutdown() 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>
-rw-r--r--drivers/staging/hv/vmbus_api.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/hv/vmbus_api.h b/drivers/staging/hv/vmbus_api.h
index 3ae0c46..8e6c107 100644
--- a/drivers/staging/hv/vmbus_api.h
+++ b/drivers/staging/hv/vmbus_api.h
@@ -102,6 +102,7 @@ struct hv_driver {
int (*probe)(struct hv_device *);
int (*remove)(struct hv_device *);
+ void (*shutdown)(struct hv_device *);
};