diff options
author | Luming Yu <luming.yu@gmail.com> | 2007-07-23 12:39:28 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-07-23 12:39:28 -0400 |
commit | 3cc2649b879f0e83fd51b14c82bad5f8f208591e (patch) | |
tree | 3af1f61f3c7336b5e1cb118d79a087f287c55529 /drivers/acpi/processor_throttling.c | |
parent | f695baf2df9e0413d3521661070103711545207a (diff) |
ACPI: fix oops due to typo in new throttling code
Signed-off-by: Luming Yu <luming.yu@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/processor_throttling.c')
-rw-r--r-- | drivers/acpi/processor_throttling.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 3f55d1f90c11..dc5b85932ea2 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c | |||
@@ -658,18 +658,20 @@ static int acpi_processor_throttling_seq_show(struct seq_file *seq, | |||
658 | pr->throttling.state_count - 1); | 658 | pr->throttling.state_count - 1); |
659 | 659 | ||
660 | seq_puts(seq, "states:\n"); | 660 | seq_puts(seq, "states:\n"); |
661 | if (acpi_processor_get_throttling == acpi_processor_get_throttling_fadt) | 661 | if (pr->throttling.acpi_processor_get_throttling == |
662 | acpi_processor_get_throttling_fadt) { | ||
662 | for (i = 0; i < pr->throttling.state_count; i++) | 663 | for (i = 0; i < pr->throttling.state_count; i++) |
663 | seq_printf(seq, " %cT%d: %02d%%\n", | 664 | seq_printf(seq, " %cT%d: %02d%%\n", |
664 | (i == pr->throttling.state ? '*' : ' '), i, | 665 | (i == pr->throttling.state ? '*' : ' '), i, |
665 | (pr->throttling.states[i].performance ? pr-> | 666 | (pr->throttling.states[i].performance ? pr-> |
666 | throttling.states[i].performance / 10 : 0)); | 667 | throttling.states[i].performance / 10 : 0)); |
667 | else | 668 | } else { |
668 | for (i = 0; i < pr->throttling.state_count; i++) | 669 | for (i = 0; i < pr->throttling.state_count; i++) |
669 | seq_printf(seq, " %cT%d: %02d%%\n", | 670 | seq_printf(seq, " %cT%d: %02d%%\n", |
670 | (i == pr->throttling.state ? '*' : ' '), i, | 671 | (i == pr->throttling.state ? '*' : ' '), i, |
671 | (int)pr->throttling.states_tss[i]. | 672 | (int)pr->throttling.states_tss[i]. |
672 | freqpercentage); | 673 | freqpercentage); |
674 | } | ||
673 | 675 | ||
674 | end: | 676 | end: |
675 | return 0; | 677 | return 0; |