dect
/
linux-2.6
Archived
13
0
Fork 0

Staging: hv: storvsc: Cleanup error handling in storvsc_channel_init()

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>
This commit is contained in:
K. Y. Srinivasan 2011-08-25 09:49:03 -07:00 committed by Greg Kroah-Hartman
parent d225d36b13
commit 5260e291ff
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ static int storvsc_channel_init(struct hv_device *device)
stor_device = get_stor_device(device);
if (!stor_device)
return -1;
return -ENODEV;
request = &stor_device->init_request;
vstor_packet = &request->vstor_packet;