Skip to content

Commit

Permalink
Staging: hv: netvsc: Cleanup error return codes in netvsc_device_add()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 25, 2011
1 parent ff2bd69 commit ace163a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/staging/hv/netvsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ int netvsc_device_add(struct hv_device *device, void *additional_info)

net_device = alloc_net_device(device);
if (!net_device) {
ret = -1;
ret = -ENOMEM;
goto cleanup;
}

Expand Down Expand Up @@ -947,7 +947,6 @@ int netvsc_device_add(struct hv_device *device, void *additional_info)

if (ret != 0) {
dev_err(&device->device, "unable to open channel: %d", ret);
ret = -1;
goto cleanup;
}

Expand All @@ -959,7 +958,6 @@ int netvsc_device_add(struct hv_device *device, void *additional_info)
if (ret != 0) {
dev_err(&device->device,
"unable to connect to NetVSP - %d", ret);
ret = -1;
goto close;
}

Expand Down

0 comments on commit ace163a

Please sign in to comment.