diff options
author | Patrick Mochel <patrick.mochel@intel.com> | 2006-05-10 10:33:00 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-05-15 02:44:47 -0400 |
commit | 5b3272655a8e8a9a6e2503bc5a88fc9d9c8292a4 (patch) | |
tree | a292396e87e1bdafdca199ab1c1843302ccf00f6 /include | |
parent | d8c3291c73b958243b33f8509d4507e76dafd055 (diff) |
ACPI: create acpi_device_suspend()/acpi_device_resume()
updated and tested by Konstantin Karasyov
http://bugzilla.kernel.org/show_bug.cgi?id=5000
Signed-off-by: Patrick Mochel <patrick.mochel@intel.com>
Signed-off-by: Konstantin Karasyov <konstantin.karasyov @intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/acpi_bus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 6dca3d542080..0de199aa6b94 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -26,7 +26,7 @@ | |||
26 | #ifndef __ACPI_BUS_H__ | 26 | #ifndef __ACPI_BUS_H__ |
27 | #define __ACPI_BUS_H__ | 27 | #define __ACPI_BUS_H__ |
28 | 28 | ||
29 | #include <linux/kobject.h> | 29 | #include <linux/device.h> |
30 | 30 | ||
31 | #include <acpi/acpi.h> | 31 | #include <acpi/acpi.h> |
32 | 32 | ||
@@ -296,6 +296,7 @@ struct acpi_device { | |||
296 | struct acpi_driver *driver; | 296 | struct acpi_driver *driver; |
297 | void *driver_data; | 297 | void *driver_data; |
298 | struct kobject kobj; | 298 | struct kobject kobj; |
299 | struct device dev; | ||
299 | }; | 300 | }; |
300 | 301 | ||
301 | #define acpi_driver_data(d) ((d)->driver_data) | 302 | #define acpi_driver_data(d) ((d)->driver_data) |