diff options
author | Bob Moore <robert.moore@intel.com> | 2010-05-26 05:48:22 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-07-07 04:33:56 +0200 |
commit | 5821f75421aa7c7bafdec291223153597f649934 (patch) | |
tree | ca0fef37918079d2210a5e29ba7bab3a87948f31 /drivers/acpi/acpica/acstruct.h | |
parent | ACPICA: Core: Replace all %d format specifiers with %u (unsigned) (diff) | |
download | linux-5821f75421aa7c7bafdec291223153597f649934.tar.xz linux-5821f75421aa7c7bafdec291223153597f649934.zip |
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.h | 6 |
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 */ |