drivers: hv: Fix missing error code in vmbus_connect()
Eliminate the follow smatch warning: drivers/hv/connection.c:236 vmbus_connect() warn: missing error code 'ret'. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Reviewed-by: Michael Kelley <mikelley@microsoft.com> Link: https://lore.kernel.org/r/1621940321-72353-1-git-send-email-jiapeng.chong@linux.alibaba.com Signed-off-by: Wei Liu <wei.liu@kernel.org>
This commit is contained in:
parent
450605c28d
commit
9de6655cc5
|
@ -232,8 +232,10 @@ int vmbus_connect(void)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
for (i = 0; ; i++) {
|
for (i = 0; ; i++) {
|
||||||
if (i == ARRAY_SIZE(vmbus_versions))
|
if (i == ARRAY_SIZE(vmbus_versions)) {
|
||||||
|
ret = -EDOM;
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
version = vmbus_versions[i];
|
version = vmbus_versions[i];
|
||||||
if (version > max_version)
|
if (version > max_version)
|
||||||
|
|
Loading…
Reference in New Issue