mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
fpga: stratix10-soc: Do not use ret uninitialized in s10_probe()
Clang warns:
drivers/fpga/stratix10-soc.c:431:9: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
return ret;
^~~
ret is only assigned in an error path now so just return 0 directly.
Fixes: 4ba0b2c294
("fpga: mgr: Use standard dev_release for class driver")
Link: https://github.com/ClangBuiltLinux/linux/issues/1517
Reviewed-by: Russ Weight <russell.h.weight@intel.com>
Reviewed-by: Tom Rix <trix@redhat.com>
Acked-by: Xu Yilun <yilun.xu@intel.com>
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Moritz Fischer <mdf@kernel.org>
This commit is contained in:
parent
8886a57974
commit
ea59fc1bef
@ -428,7 +428,7 @@ static int s10_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
platform_set_drvdata(pdev, mgr);
|
platform_set_drvdata(pdev, mgr);
|
||||||
return ret;
|
return 0;
|
||||||
|
|
||||||
probe_err:
|
probe_err:
|
||||||
stratix10_svc_free_channel(priv->chan);
|
stratix10_svc_free_channel(priv->chan);
|
||||||
|
Loading…
Reference in New Issue
Block a user