power_supply: lp8788-charger: initialize boolean 'found'
authorColin Ian King <colin.king@canonical.com>
Sat, 27 Feb 2016 12:54:11 +0000 (12:54 +0000)
committerSebastian Reichel <sre@kernel.org>
Thu, 3 Mar 2016 14:01:49 +0000 (15:01 +0100)
The boolean 'found' is not initialized and hence garbage. It should
be initialized as false.

Found with static analysis using CoverityScan

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Milo Kim <milo.kim@ti.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/lp8788-charger.c

index f5a48fd..7321b72 100644 (file)
@@ -455,7 +455,7 @@ static void lp8788_charger_event(struct work_struct *work)
 
 static bool lp8788_find_irq_id(struct lp8788_charger *pchg, int virq, int *id)
 {
-       bool found;
+       bool found = false;
        int i;
 
        for (i = 0; i < pchg->num_irqs; i++) {