[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1363501123-14350-1-git-send-email-silviupopescu1990@gmail.com>
Date: Sun, 17 Mar 2013 08:18:43 +0200
From: Silviu-Mihai Popescu <silviupopescu1990@...il.com>
To: linux-kernel@...r.kernel.org
Cc: cbou@...l.ru, dwmw2@...radead.org,
Silviu-Mihai Popescu <silviupopescu1990@...il.com>
Subject: [PATCH] power: 88pm860x: fix invalid free of devm_* allocated data
The objects allocated by devm_* APIs are managed by devres and are freed
when the device is detached. There is no need to use kfree() explicitly.
Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@...il.com>
---
drivers/power/88pm860x_charger.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/power/88pm860x_charger.c b/drivers/power/88pm860x_charger.c
index 4b37a5a..d7ceeac 100644
--- a/drivers/power/88pm860x_charger.c
+++ b/drivers/power/88pm860x_charger.c
@@ -714,7 +714,6 @@ out_irq:
while (--i >= 0)
free_irq(info->irq[i], info);
out:
- kfree(info);
return ret;
}
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists