Skip to content

Commit 3d8a186

Browse files
nathanchancemathieupoirier
authored andcommitted
remoteproc: st: Fix sometimes uninitialized ret in st_rproc_probe()
Clang warns (or errors with CONFIG_WERROR=y): drivers/remoteproc/st_remoteproc.c:357:6: error: variable 'ret' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized] 357 | if (!ddata->config) | ^~~~~~~~~~~~~~ drivers/remoteproc/st_remoteproc.c:442:9: note: uninitialized use occurs here 442 | return ret; | ^~~ drivers/remoteproc/st_remoteproc.c:357:2: note: remove the 'if' if its condition is always false 357 | if (!ddata->config) | ^~~~~~~~~~~~~~~~~~~ 358 | goto free_rproc; | ~~~~~~~~~~~~~~~ drivers/remoteproc/st_remoteproc.c:348:9: note: initialize the variable 'ret' to silence this warning 348 | int ret, i; | ^ | = 0 1 error generated. Set ret to -ENODEV, which seems to be a standard return code when device_get_match_data() returns NULL. Closes: ClangBuiltLinux/linux#1944 Fixes: 5c77ebc ("remoteproc: st: Use device_get_match_data()") Signed-off-by: Nathan Chancellor <[email protected]> Reviewed-by: Nick Desaulniers <[email protected]> Link: https://lore.kernel.org/r/20231012-st_remoteproc-fix-sometimes-uninit-v1-1-f64d0f2d5b37@kernel.org Signed-off-by: Mathieu Poirier <[email protected]>
1 parent 5c77ebc commit 3d8a186

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/remoteproc/st_remoteproc.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,10 @@ static int st_rproc_probe(struct platform_device *pdev)
354354
rproc->has_iommu = false;
355355
ddata = rproc->priv;
356356
ddata->config = (struct st_rproc_config *)device_get_match_data(dev);
357-
if (!ddata->config)
357+
if (!ddata->config) {
358+
ret = -ENODEV;
358359
goto free_rproc;
360+
}
359361

360362
platform_set_drvdata(pdev, rproc);
361363

0 commit comments

Comments
 (0)