public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 8/8] i8042: support device async suspend & shutdown
@ 2009-07-15  7:38 Zhang Rui
  2009-07-15  0:37 ` Pavel Machek
  2009-07-15 10:46 ` Andi Kleen
  0 siblings, 2 replies; 7+ messages in thread
From: Zhang Rui @ 2009-07-15  7:38 UTC (permalink / raw)
  To: Linux Kernel Mailing List, linux-pm, linux-acpi
  Cc: Len Brown, Pavel Machek, Rafael J. Wysocki, Van De Ven, Arjan,
	Zhang, Rui


i8042 controller support device async actions.

If boot option "dev_async_action" is added,
i8042 controller and its child devices can be
suspended/resumed/shutdown asynchronously.

Signed-off-by: Zhang Rui <rui.zhang@intel.com>
---
 drivers/input/serio/i8042.c |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

Index: linux-2.6/drivers/input/serio/i8042.c
===================================================================
--- linux-2.6.orig/drivers/input/serio/i8042.c
+++ linux-2.6/drivers/input/serio/i8042.c
@@ -1284,14 +1284,21 @@ static int __init i8042_init(void)
 		goto err_unregister_driver;
 	}
 
-	err = platform_device_add(i8042_platform_device);
+	err = dev_async_register(&i8042_platform_device->dev,
+			DEV_ASYNC_SUSPEND | DEV_ASYNC_SHUTDOWN);
 	if (err)
 		goto err_free_device;
 
+	err = platform_device_add(i8042_platform_device);
+	if (err)
+		goto err_dev_async_unregister;
+
 	panic_blink = i8042_panic_blink;
 
 	return 0;
 
+ err_dev_async_unregister:
+	dev_async_unregister(&i8042_platform_device->dev);
  err_free_device:
 	platform_device_put(i8042_platform_device);
  err_unregister_driver:
@@ -1304,6 +1311,7 @@ static int __init i8042_init(void)
 
 static void __exit i8042_exit(void)
 {
+	dev_async_unregister(&i8042_platform_device->dev);
 	platform_device_unregister(i8042_platform_device);
 	platform_driver_unregister(&i8042_driver);
 	i8042_platform_exit();



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

end of thread, other threads:[~2009-07-17  3:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-15  7:38 [PATCH 8/8] i8042: support device async suspend & shutdown Zhang Rui
2009-07-15  0:37 ` Pavel Machek
2009-07-17  1:51   ` Zhang Rui
2009-07-17  2:40     ` Rafael J. Wysocki
2009-07-17  3:08       ` Zhang Rui
2009-07-15 10:46 ` Andi Kleen
2009-07-16  1:45   ` Zhang Rui

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox