diff options
| author | Dominik Brodowski <linux@dominikbrodowski.de> | 2004-01-30 11:55:49 -0500 |
|---|---|---|
| committer | Len Brown <lenb@dhcppc3.> | 2004-01-30 11:55:49 -0500 |
| commit | 2f041d0bfecf03dd7e798b84c5502b238ddc42fc (patch) | |
| tree | 0aa6037823828cb3468724a59ae4a1e67bd9838b /include/acpi | |
| parent | 174b4ac0e57188b6737480ab2dca63b17682440a (diff) | |
[ACPI] Abstract the registration method between low-level drivers
and the ACPI Processor P-States driver.
from Dominik Brodowski
Diffstat (limited to 'include/acpi')
| -rw-r--r-- | include/acpi/processor.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 325bcd7713fe..3dfe16b5ccef 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h @@ -68,15 +68,12 @@ struct acpi_processor_px { }; struct acpi_processor_performance { - int state; - int platform_limit; - u16 control_register; - u16 status_register; - u8 control_register_bit_width; - u8 status_register_bit_width; - int state_count; + unsigned int state; + unsigned int platform_limit; + struct acpi_pct_register control_register; + struct acpi_pct_register status_register; + unsigned int state_count; struct acpi_processor_px states[ACPI_PROCESSOR_MAX_PERFORMANCE]; - struct cpufreq_frequency_table freq_table[ACPI_PROCESSOR_MAX_PERFORMANCE]; }; |
