diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-06-03 17:12:20 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-06-03 17:12:20 -0400 |
commit | b04c58b1ed26317bfb4b33d3a2d16377fc6acd0f (patch) | |
tree | 8b6f65582a8fb3b70a07c16321969af1d06f7afc /include/acpi | |
parent | 864e055f44a5701cb033bf3afa2b6cc37ddba678 (diff) | |
parent | 48459340b92b00ae1a75179f168ef20d3e61f264 (diff) |
Merge branch 'acpi-enumeration'
* acpi-enumeration:
ACPI / scan: use platform bus type by default for _HID enumeration
ACPI / scan: always register ACPI LPSS scan handler
ACPI / scan: always register memory hotplug scan handler
ACPI / scan: always register container scan handler
ACPI / scan: Change the meaning of missing .attach() in scan handlers
ACPI / scan: introduce platform_id device PNP type flag
ACPI / scan: drop unsupported serial IDs from PNP ACPI scan handler ID list
ACPI / scan: drop IDs that do not comply with the ACPI PNP ID rule
ACPI / PNP: use device ID list for PNPACPI device enumeration
ACPI / scan: .match() callback for ACPI scan handlers
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 { |