aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/blkvsc_drv.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-07-24 11:00:10 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:01:45 -0700
commitb57a68dcd9030515763133f79c5a4a7c572e45d6 (patch)
tree5905ecbcc8797aef04355cccf376915744f220b4 /drivers/staging/hv/blkvsc_drv.c
parentStaging: hv: add the Hyper-V virtual block driver to the build (diff)
downloadlinux-dev-b57a68dcd9030515763133f79c5a4a7c572e45d6.tar.xz
linux-dev-b57a68dcd9030515763133f79c5a4a7c572e45d6.zip
Staging: hv: blkvsc: fix up driver_data usage
driver_data is gone now from struct device, so use the proper functions to access it instead. Thanks to Bill Pemberton for pointing out this build error. Cc: Bill Pemberton <wfp5p@viridian.itc.Virginia.EDU> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/blkvsc_drv.c')
-rw-r--r--drivers/staging/hv/blkvsc_drv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c
index a4852f5a2a3a..04d980f1beee 100644
--- a/drivers/staging/hv/blkvsc_drv.c
+++ b/drivers/staging/hv/blkvsc_drv.c
@@ -341,7 +341,7 @@ static int blkvsc_probe(struct device *device)
blkdev->target = device_info.TargetId; // this identified the device 0 or 1
blkdev->path = device_info.PathId; // this identified the ide ctrl 0 or 1
- device->driver_data = blkdev;
+ dev_set_drvdata(device, blkdev);
// Calculate the major and device num
if (blkdev->path == 0)
@@ -457,7 +457,7 @@ Cleanup:
static void blkvsc_shutdown(struct device *device)
{
- struct block_device_context *blkdev = (struct block_device_context*)device->driver_data;
+ struct block_device_context *blkdev = dev_get_drvdata(device);
unsigned long flags;
if (!blkdev)
@@ -786,7 +786,7 @@ static int blkvsc_remove(struct device *device)
struct device_context *device_ctx = device_to_device_context(device);
DEVICE_OBJECT* device_obj = &device_ctx->device_obj;
- struct block_device_context *blkdev = (struct block_device_context*)device->driver_data;
+ struct block_device_context *blkdev = dev_get_drvdata(device);
unsigned long flags;
DPRINT_ENTER(BLKVSC_DRV);