diff options
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/acpi_bus.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index fb6e00dcce74..b5714580801a 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -131,6 +131,7 @@ static inline struct acpi_hotplug_profile *to_acpi_hotplug_profile( | |||
131 | struct acpi_scan_handler { | 131 | struct acpi_scan_handler { |
132 | const struct acpi_device_id *ids; | 132 | const struct acpi_device_id *ids; |
133 | struct list_head list_node; | 133 | struct list_head list_node; |
134 | bool (*match)(char *idstr, const struct acpi_device_id **matchid); | ||
134 | int (*attach)(struct acpi_device *dev, const struct acpi_device_id *id); | 135 | int (*attach)(struct acpi_device *dev, const struct acpi_device_id *id); |
135 | void (*detach)(struct acpi_device *dev); | 136 | void (*detach)(struct acpi_device *dev); |
136 | void (*bind)(struct device *phys_dev); | 137 | void (*bind)(struct device *phys_dev); |
@@ -232,7 +233,8 @@ struct acpi_hardware_id { | |||
232 | struct acpi_pnp_type { | 233 | struct acpi_pnp_type { |
233 | u32 hardware_id:1; | 234 | u32 hardware_id:1; |
234 | u32 bus_address:1; | 235 | u32 bus_address:1; |
235 | u32 reserved:30; | 236 | u32 platform_id:1; |
237 | u32 reserved:29; | ||
236 | }; | 238 | }; |
237 | 239 | ||
238 | struct acpi_device_pnp { | 240 | struct acpi_device_pnp { |