Просмотр исходного кода

power_supply: lp8788-charger: initialize boolean 'found'

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>
Colin Ian King 10 лет назад
Родитель
Сommit
9052768fe4
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      drivers/power/lp8788-charger.c

+ 1 - 1
drivers/power/lp8788-charger.c

@@ -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++) {