aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2012-06-29 17:40:22 -0400
committerRafael J. Wysocki <rjw@sisk.pl>2012-07-01 07:31:06 -0400
commita5cd33e1d4f3319e86f9f0fc667fa74ef9d9216c (patch)
treee54048784da1aeb441f56bd835deb16ed6114742 /include/acpi
parent13db85528fd606b2dfd8f1a5952158e4ad6ce51a (diff)
ACPI / PM: Drop legacy driver PM callbacks that are not used any more
Since the legacy ACPI driver PM callbacks included into struct acpi_device_ops are not used any more, drop them. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/acpi_bus.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index c2bbec76ba10..18fd41033e03 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -117,8 +117,6 @@ struct acpi_device;
117typedef int (*acpi_op_add) (struct acpi_device * device); 117typedef int (*acpi_op_add) (struct acpi_device * device);
118typedef int (*acpi_op_remove) (struct acpi_device * device, int type); 118typedef int (*acpi_op_remove) (struct acpi_device * device, int type);
119typedef int (*acpi_op_start) (struct acpi_device * device); 119typedef int (*acpi_op_start) (struct acpi_device * device);
120typedef int (*acpi_op_suspend) (struct acpi_device * device);
121typedef int (*acpi_op_resume) (struct acpi_device * device);
122typedef int (*acpi_op_bind) (struct acpi_device * device); 120typedef int (*acpi_op_bind) (struct acpi_device * device);
123typedef int (*acpi_op_unbind) (struct acpi_device * device); 121typedef int (*acpi_op_unbind) (struct acpi_device * device);
124typedef void (*acpi_op_notify) (struct acpi_device * device, u32 event); 122typedef void (*acpi_op_notify) (struct acpi_device * device, u32 event);
@@ -132,8 +130,6 @@ struct acpi_device_ops {
132 acpi_op_add add; 130 acpi_op_add add;
133 acpi_op_remove remove; 131 acpi_op_remove remove;
134 acpi_op_start start; 132 acpi_op_start start;
135 acpi_op_suspend suspend;
136 acpi_op_resume resume;
137 acpi_op_bind bind; 133 acpi_op_bind bind;
138 acpi_op_unbind unbind; 134 acpi_op_unbind unbind;
139 acpi_op_notify notify; 135 acpi_op_notify notify;