diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2011-08-25 16:49:05 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-08-25 22:29:56 (GMT) |
commit | 3b54eed7de90d59b2c6fa416513826279acc3bbd (patch) | |
tree | 547a285c659cebbeb622d5e08514b0d2b14de880 /drivers | |
parent | cae50a27a0405b7a70a97a2c9c22912955c84d44 (diff) | |
download | linux-fsl-qoriq-3b54eed7de90d59b2c6fa416513826279acc3bbd.tar.xz |
Staging: hv: storvsc: Cleanup error handling in storvsc_do_io()
Use standard Linux error codes.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/hv/storvsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/hv/storvsc.c b/drivers/staging/hv/storvsc.c index 2b73f72..2b914e4 100644 --- a/drivers/staging/hv/storvsc.c +++ b/drivers/staging/hv/storvsc.c @@ -454,7 +454,7 @@ int storvsc_do_io(struct hv_device *device, stor_device = get_stor_device(device); if (!stor_device) - return -2; + return -ENODEV; request->device = device; |