提交 428faae1 编写于 作者: K K. Y. Srinivasan 提交者: Greg Kroah-Hartman

Staging: hv: Make blkvsc_drv an instance of struct hv_driver

Make blkvsc_drv an instance of struct hv_driver.
Signed-off-by: NK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: NHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: NAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: NHank Janssen <hjanssen@microsoft.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 40bf63ed
...@@ -801,10 +801,10 @@ static void blkvsc_request(struct request_queue *queue) ...@@ -801,10 +801,10 @@ static void blkvsc_request(struct request_queue *queue)
/* The one and only one */ /* The one and only one */
static struct storvsc_driver blkvsc_drv = { static struct hv_driver blkvsc_drv = {
.base.probe = blkvsc_probe, .probe = blkvsc_probe,
.base.remove = blkvsc_remove, .remove = blkvsc_remove,
.base.shutdown = blkvsc_shutdown, .shutdown = blkvsc_shutdown,
}; };
static const struct block_device_operations block_ops = { static const struct block_device_operations block_ops = {
...@@ -820,7 +820,7 @@ static const struct block_device_operations block_ops = { ...@@ -820,7 +820,7 @@ static const struct block_device_operations block_ops = {
*/ */
static int blkvsc_drv_init(void) static int blkvsc_drv_init(void)
{ {
struct hv_driver *drv = &blkvsc_drv.base; struct hv_driver *drv = &blkvsc_drv;
int ret; int ret;
BUILD_BUG_ON(sizeof(sector_t) != 8); BUILD_BUG_ON(sizeof(sector_t) != 8);
...@@ -844,7 +844,7 @@ static int blkvsc_drv_exit_cb(struct device *dev, void *data) ...@@ -844,7 +844,7 @@ static int blkvsc_drv_exit_cb(struct device *dev, void *data)
static void blkvsc_drv_exit(void) static void blkvsc_drv_exit(void)
{ {
struct hv_driver *drv = &blkvsc_drv.base; struct hv_driver *drv = &blkvsc_drv;
struct device *current_dev; struct device *current_dev;
int ret; int ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册