Staging: hv: storvsc: Cleanup error code returned in storvsc_probe()
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:
parent
f3b741658c
commit
8e854680b5
1 changed files with 2 additions and 2 deletions
|
@ -685,7 +685,7 @@ static int storvsc_probe(struct hv_device *device)
|
|||
if (ret != 0) {
|
||||
kmem_cache_destroy(host_dev->request_pool);
|
||||
scsi_host_put(host);
|
||||
return -1;
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
host_dev->path = device_info.path_id;
|
||||
|
@ -706,7 +706,7 @@ static int storvsc_probe(struct hv_device *device)
|
|||
|
||||
kmem_cache_destroy(host_dev->request_pool);
|
||||
scsi_host_put(host);
|
||||
return -1;
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
scsi_scan_host(host);
|
||||
|
|
Loading…
Reference in a new issue