Skip to content

Commit d853b34

Browse files
nathanchancebroonie
authored andcommitted
spi: bcm2835aux: Restore err assignment in bcm2835aux_spi_probe
Clang warns: drivers/spi/spi-bcm2835aux.c:532:50: warning: variable 'err' is uninitialized when used here [-Wuninitialized] dev_err(&pdev->dev, "could not get clk: %d\n", err); ^~~ ./include/linux/dev_printk.h:112:32: note: expanded from macro 'dev_err' _dev_err(dev, dev_fmt(fmt), ##__VA_ARGS__) ^~~~~~~~~~~ drivers/spi/spi-bcm2835aux.c:495:9: note: initialize the variable 'err' to silence this warning int err; ^ = 0 1 warning generated. Restore the assignment so that the error value can be used in the dev_err statement and there is no uninitialized memory being leaked. Fixes: e13ee6c ("spi: bcm2835aux: Fix use-after-free on unbind") Link: ClangBuiltLinux#1199 Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> Link: https://lore.kernel.org/r/20201113180701.455541-1-natechancellor@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent c371dcf commit d853b34

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/spi/spi-bcm2835aux.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,8 +529,9 @@ static int bcm2835aux_spi_probe(struct platform_device *pdev)
529529

530530
bs->clk = devm_clk_get(&pdev->dev, NULL);
531531
if (IS_ERR(bs->clk)) {
532+
err = PTR_ERR(bs->clk);
532533
dev_err(&pdev->dev, "could not get clk: %d\n", err);
533-
return PTR_ERR(bs->clk);
534+
return err;
534535
}
535536

536537
bs->irq = platform_get_irq(pdev, 0);

0 commit comments

Comments
 (0)