summaryrefslogtreecommitdiff
path: root/drivers/acpi/acpica/acstruct.h
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2010-05-26 11:48:22 +0800
committerLen Brown <len.brown@intel.com>2010-07-06 22:33:56 -0400
commit5821f75421aa7c7bafdec291223153597f649934 (patch)
treeca0fef37918079d2210a5e29ba7bab3a87948f31 /drivers/acpi/acpica/acstruct.h
parentb27d65975c252ff774edff8e01f0a9fd46d8ab62 (diff)
ACPICA: Expand device initialization counters to 32 bits
Expand the various device initialization counters from 16-bit to 32-bit. Allows for very large namespaces. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/acstruct.h')
-rw-r--r--drivers/acpi/acpica/acstruct.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/acstruct.h b/drivers/acpi/acpica/acstruct.h
index 0e2c66af3c9d..6e5dd97949fe 100644
--- a/drivers/acpi/acpica/acstruct.h
+++ b/drivers/acpi/acpica/acstruct.h
@@ -201,11 +201,11 @@ struct acpi_evaluate_info {
/* Info used by acpi_ns_initialize_devices */
struct acpi_device_walk_info {
- u16 device_count;
- u16 num_STA;
- u16 num_INI;
struct acpi_table_desc *table_desc;
struct acpi_evaluate_info *evaluate_info;
+ u32 device_count;
+ u32 num_STA;
+ u32 num_INI;
};
/* TBD: [Restructure] Merge with struct above */