aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acpi_bus.h
diff options
context:
space:
mode:
authorLin Ming <ming.m.lin@intel.com>2010-01-27 21:53:19 -0500
committerLen Brown <len.brown@intel.com>2010-01-28 01:47:33 -0500
commit439913fffd39374c3737186b22d2d56c3a0ae526 (patch)
treef6d5c809c1b77950a2cf7174fdee8667d527c87b /include/acpi/acpi_bus.h
parentaea9c04bcc257caad9841c283b90ec1b28267fae (diff)
ACPI: replace acpi_integer by u64
acpi_integer is now obsolete and removed from the ACPICA code base, replaced by u64. Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/acpi_bus.h')
-rw-r--r--include/acpi/acpi_bus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index 3cd9ccdcbd8f..71c105c9b0ee 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -250,8 +250,8 @@ struct acpi_device_wakeup_state {
250 250
251struct acpi_device_wakeup { 251struct acpi_device_wakeup {
252 acpi_handle gpe_device; 252 acpi_handle gpe_device;
253 acpi_integer gpe_number; 253 u64 gpe_number;
254 acpi_integer sleep_state; 254 u64 sleep_state;
255 struct acpi_handle_list resources; 255 struct acpi_handle_list resources;
256 struct acpi_device_wakeup_state state; 256 struct acpi_device_wakeup_state state;
257 struct acpi_device_wakeup_flags flags; 257 struct acpi_device_wakeup_flags flags;
@@ -380,7 +380,7 @@ struct acpi_pci_root {
380}; 380};
381 381
382/* helper */ 382/* helper */
383acpi_handle acpi_get_child(acpi_handle, acpi_integer); 383acpi_handle acpi_get_child(acpi_handle, u64);
384int acpi_is_root_bridge(acpi_handle); 384int acpi_is_root_bridge(acpi_handle);
385acpi_handle acpi_get_pci_rootbridge_handle(unsigned int, unsigned int); 385acpi_handle acpi_get_pci_rootbridge_handle(unsigned int, unsigned int);
386struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle); 386struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle);