linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] gpio-charger: Add gpio_charger_resume
@ 2011-04-03  2:13 Benson Leung
  2011-04-06  9:08 ` Benson Leung
  2011-04-06 23:55 ` [PATCH v3] " Benson Leung
  0 siblings, 2 replies; 8+ messages in thread
From: Benson Leung @ 2011-04-03  2:13 UTC (permalink / raw)
  To: lars, cbouatmailru; +Cc: rklein, linux-kernel, Benson Leung

Gpio charger should notify if the gpio state had changed
during suspend. This will send a CHANGED event each time
the system resumes, ensuring a plug/unplug of the charger
is not missed.

Signed-off-by: Benson Leung <bleung@chromium.org>

--
Version history :
v2 : Changed to use dev_pm_ops
v1 : Initial
---
 drivers/power/gpio-charger.c |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/drivers/power/gpio-charger.c b/drivers/power/gpio-charger.c
index 25b88ac..df29059 100644
--- a/drivers/power/gpio-charger.c
+++ b/drivers/power/gpio-charger.c
@@ -161,12 +161,32 @@ static int __devexit gpio_charger_remove(struct platform_device *pdev)
 	return 0;
 }
 
+#if defined(CONFIG_PM)
+static int gpio_charger_resume(struct device *dev)
+{
+	struct platform_device *pdev = to_platform_device(dev);
+	struct gpio_charger *gpio_charger = platform_get_drvdata(pdev);
+
+	power_supply_changed(&gpio_charger->charger);
+
+	return 0;
+}
+
+static const struct dev_pm_ops gpio_charger_pm_ops = {
+	.resume		= gpio_charger_resume,
+};
+#endif
+
+
 static struct platform_driver gpio_charger_driver = {
 	.probe = gpio_charger_probe,
 	.remove = __devexit_p(gpio_charger_remove),
 	.driver = {
 		.name = "gpio-charger",
 		.owner = THIS_MODULE,
+#if defined(CONFIG_PM)
+		.pm = &gpio_charger_pm_ops,
+#endif
 	},
 };
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-04-20 17:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-03  2:13 [PATCH v2] gpio-charger: Add gpio_charger_resume Benson Leung
2011-04-06  9:08 ` Benson Leung
2011-04-06 14:40   ` Lars-Peter Clausen
2011-04-06 20:58     ` Benson Leung
2011-04-06 23:55 ` [PATCH v3] " Benson Leung
2011-04-07  0:15   ` Lars-Peter Clausen
2011-04-12  4:19     ` Benson Leung
2011-04-20 17:25       ` Anton Vorontsov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).