Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

power: supply: wm8350-power: Add missing free in free_charger_irq

In free_charger_irq(), there is no free for 'WM8350_IRQ_CHG_FAST_RDY'.
Therefore, it should be better to add it in order to avoid the memory leak.

Fixes: 14431aa0c5a4 ("power_supply: Add support for WM8350 PMU")
Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>

authored by

Jiasheng Jiang and committed by
Sebastian Reichel
6dee930f b0b14b5b

+1
+1
drivers/power/supply/wm8350_power.c
··· 524 524 wm8350_free_irq(wm8350, WM8350_IRQ_CHG_TO, wm8350); 525 525 wm8350_free_irq(wm8350, WM8350_IRQ_CHG_END, wm8350); 526 526 wm8350_free_irq(wm8350, WM8350_IRQ_CHG_START, wm8350); 527 + wm8350_free_irq(wm8350, WM8350_IRQ_CHG_FAST_RDY, wm8350); 527 528 wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P9, wm8350); 528 529 wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_3P1, wm8350); 529 530 wm8350_free_irq(wm8350, WM8350_IRQ_CHG_VBATT_LT_2P85, wm8350);