]> git.baikalelectronics.ru Git - kernel.git/commitdiff
ssb: Remove redundant assignment to err
authorYang Li <yang.lee@linux.alibaba.com>
Thu, 29 Apr 2021 10:47:10 +0000 (18:47 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 15 Jun 2021 10:10:16 +0000 (13:10 +0300)
Variable 'err' is set to zero but this value is never read as it is
overwritten with a new value later on, hence it is a redundant
assignment and can be removed.

Clean up the following clang-analyzer warning:

drivers/ssb/main.c:1306:3: warning: Value stored to 'err' is never read
[clang-analyzer-deadcode.DeadStores]
drivers/ssb/main.c:1312:3: warning: Value stored to 'err' is never read
[clang-analyzer-deadcode.DeadStores]

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Acked-by: Michael Büsch <m@bues.ch>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/1619693230-108804-1-git-send-email-yang.lee@linux.alibaba.com
drivers/ssb/main.c

index 0e180c36daa4112c4bca11744b136df3a0c7dfab..620cc9dccad796d5fcc0cd7777326b436387a5f1 100644 (file)
@@ -1312,13 +1312,11 @@ static int __init ssb_modinit(void)
        if (err) {
                pr_err("Broadcom 43xx PCI-SSB-bridge initialization failed\n");
                /* don't fail SSB init because of this */
-               err = 0;
        }
        err = ssb_host_pcmcia_init();
        if (err) {
                pr_err("PCMCIA host initialization failed\n");
                /* don't fail SSB init because of this */
-               err = 0;
        }
        err = ssb_gige_init();
        if (err) {