summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorK. Y. Srinivasan2011-08-25 18:49:04 +0200
committerGreg Kroah-Hartman2011-08-26 00:29:56 +0200
commitcae50a27a0405b7a70a97a2c9c22912955c84d44 (patch)
treef6e0a079bb399a5e071a6c4492358636b6f5e429 /drivers/staging
parentStaging: hv: storvsc: Cleanup error handling in storvsc_channel_init() (diff)
downloadkernel-qcow2-linux-cae50a27a0405b7a70a97a2c9c22912955c84d44.tar.gz
kernel-qcow2-linux-cae50a27a0405b7a70a97a2c9c22912955c84d44.tar.xz
kernel-qcow2-linux-cae50a27a0405b7a70a97a2c9c22912955c84d44.zip
Staging: hv: storvsc: Cleanup error handling in storvsc_connect_to_vsp()
Cleanup error handling in storvsc_connect_to_vsp(). 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/staging')
-rw-r--r--drivers/staging/hv/storvsc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/hv/storvsc.c b/drivers/staging/hv/storvsc.c
index 22ac6f21e261..2b73f726bbb7 100644
--- a/drivers/staging/hv/storvsc.c
+++ b/drivers/staging/hv/storvsc.c
@@ -376,7 +376,7 @@ static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size)
storvsc_on_channel_callback, device);
if (ret != 0)
- return -1;
+ return ret;
ret = storvsc_channel_init(device);