diff options
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/acpi_bus.h | 6 | ||||
-rw-r--r-- | include/acpi/processor.h | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index 3cb3da8ac9d9..98db31d9f9b4 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -462,11 +462,9 @@ void acpi_remove_dir(struct acpi_device *); | |||
462 | */ | 462 | */ |
463 | struct acpi_bus_type { | 463 | struct acpi_bus_type { |
464 | struct list_head list; | 464 | struct list_head list; |
465 | struct bus_type *bus; | 465 | const char *name; |
466 | /* For general devices under the bus */ | 466 | bool (*match)(struct device *dev); |
467 | int (*find_device) (struct device *, acpi_handle *); | 467 | int (*find_device) (struct device *, acpi_handle *); |
468 | /* For bridges, such as PCI root bridge, IDE controller */ | ||
469 | int (*find_bridge) (struct device *, acpi_handle *); | ||
470 | void (*setup)(struct device *); | 468 | void (*setup)(struct device *); |
471 | void (*cleanup)(struct device *); | 469 | void (*cleanup)(struct device *); |
472 | }; | 470 | }; |
diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 555d0337ad95..b327b5a9296d 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h | |||
@@ -235,6 +235,9 @@ extern void acpi_processor_unregister_performance(struct | |||
235 | if a _PPC object exists, rmmod is disallowed then */ | 235 | if a _PPC object exists, rmmod is disallowed then */ |
236 | int acpi_processor_notify_smm(struct module *calling_module); | 236 | int acpi_processor_notify_smm(struct module *calling_module); |
237 | 237 | ||
238 | /* parsing the _P* objects. */ | ||
239 | extern int acpi_processor_get_performance_info(struct acpi_processor *pr); | ||
240 | |||
238 | /* for communication between multiple parts of the processor kernel module */ | 241 | /* for communication between multiple parts of the processor kernel module */ |
239 | DECLARE_PER_CPU(struct acpi_processor *, processors); | 242 | DECLARE_PER_CPU(struct acpi_processor *, processors); |
240 | extern struct acpi_processor_errata errata; | 243 | extern struct acpi_processor_errata errata; |