1
0
Fork 0

power_supply: 88pm860x_charger: Do not call free_irq() twice

My static checker detected double free_irq() in pm860x_charger_remove().
Unloading this module always causes a warning. This patch removes the
first redundant free_irq() call.

Signed-off-by: Takeshi Yoshimura <yos@sslab.ics.keio.ac.jp>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
steinar/wifi_calib_4_9_kernel
Takeshi Yoshimura 2015-05-29 13:16:43 +00:00 committed by Sebastian Reichel
parent cd054ee165
commit a1cab5bb87
1 changed files with 0 additions and 1 deletions

View File

@ -742,7 +742,6 @@ static int pm860x_charger_remove(struct platform_device *pdev)
int i;
power_supply_unregister(info->usb);
free_irq(info->irq[0], info);
for (i = 0; i < info->irq_nums; i++)
free_irq(info->irq[i], info);
return 0;