Commit ace163a8 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman
Browse files

Staging: hv: netvsc: Cleanup error return codes in netvsc_device_add()



Use standard Linux error codes.

Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ff2bd69a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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;
	}

@@ -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;
	}

@@ -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;
	}