From: K. Y. Srinivasan Date: Tue, 10 May 2011 14:56:10 +0000 (-0700) Subject: Staging: hv: Make blkvsc_drv an instance of struct hv_driver X-Git-Tag: v3.0-rc1~336^2~290 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=428faae18fb11df531fd9f6b1e314f54819190f1;p=karo-tx-linux.git Staging: hv: Make blkvsc_drv an instance of struct hv_driver Make blkvsc_drv an instance of struct hv_driver. Signed-off-by: K. Y. Srinivasan Signed-off-by: Haiyang Zhang Signed-off-by: Abhishek Kane Signed-off-by: Hank Janssen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c index 0038a9724418..f67938cb5a15 100644 --- a/drivers/staging/hv/blkvsc_drv.c +++ b/drivers/staging/hv/blkvsc_drv.c @@ -801,10 +801,10 @@ static void blkvsc_request(struct request_queue *queue) /* The one and only one */ -static struct storvsc_driver blkvsc_drv = { - .base.probe = blkvsc_probe, - .base.remove = blkvsc_remove, - .base.shutdown = blkvsc_shutdown, +static struct hv_driver blkvsc_drv = { + .probe = blkvsc_probe, + .remove = blkvsc_remove, + .shutdown = blkvsc_shutdown, }; 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) { - struct hv_driver *drv = &blkvsc_drv.base; + struct hv_driver *drv = &blkvsc_drv; int ret; BUILD_BUG_ON(sizeof(sector_t) != 8); @@ -844,7 +844,7 @@ static int blkvsc_drv_exit_cb(struct device *dev, void *data) static void blkvsc_drv_exit(void) { - struct hv_driver *drv = &blkvsc_drv.base; + struct hv_driver *drv = &blkvsc_drv; struct device *current_dev; int ret;