aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acpi_bus.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/acpi/acpi_bus.h')
-rw-r--r--include/acpi/acpi_bus.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index 58dc8f651861..a6b4037beeae 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -97,8 +97,6 @@ typedef int (*acpi_op_resume) (struct acpi_device * device);
97typedef int (*acpi_op_scan) (struct acpi_device * device); 97typedef int (*acpi_op_scan) (struct acpi_device * device);
98typedef int (*acpi_op_bind) (struct acpi_device * device); 98typedef int (*acpi_op_bind) (struct acpi_device * device);
99typedef int (*acpi_op_unbind) (struct acpi_device * device); 99typedef int (*acpi_op_unbind) (struct acpi_device * device);
100typedef int (*acpi_op_match) (struct acpi_device * device,
101 struct acpi_driver * driver);
102typedef int (*acpi_op_shutdown) (struct acpi_device * device); 100typedef int (*acpi_op_shutdown) (struct acpi_device * device);
103 101
104struct acpi_bus_ops { 102struct acpi_bus_ops {
@@ -112,9 +110,8 @@ struct acpi_bus_ops {
112 u32 acpi_op_scan:1; 110 u32 acpi_op_scan:1;
113 u32 acpi_op_bind:1; 111 u32 acpi_op_bind:1;
114 u32 acpi_op_unbind:1; 112 u32 acpi_op_unbind:1;
115 u32 acpi_op_match:1;
116 u32 acpi_op_shutdown:1; 113 u32 acpi_op_shutdown:1;
117 u32 reserved:20; 114 u32 reserved:21;
118}; 115};
119 116
120struct acpi_device_ops { 117struct acpi_device_ops {
@@ -128,7 +125,6 @@ struct acpi_device_ops {
128 acpi_op_scan scan; 125 acpi_op_scan scan;
129 acpi_op_bind bind; 126 acpi_op_bind bind;
130 acpi_op_unbind unbind; 127 acpi_op_unbind unbind;
131 acpi_op_match match;
132 acpi_op_shutdown shutdown; 128 acpi_op_shutdown shutdown;
133}; 129};
134 130