Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 202533
b: refs/heads/master
c: b30d330
h: refs/heads/master
i:
  202531: b0bc2a8
v: v3
  • Loading branch information
Borislav Petkov authored and Dave Jones committed Aug 3, 2010
1 parent 7f2101f commit 9dc2f8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 55c789bb2bcdcaa8f1f60687b4a9dbd02ffddd88
refs/heads/master: b30d3304c9c068ccfe6940232834768af75f8c9a
4 changes: 2 additions & 2 deletions trunk/arch/x86/kernel/cpu/cpufreq/powernow-k8.c
Original file line number Diff line number Diff line change
Expand Up @@ -912,8 +912,8 @@ static int fill_powernow_table_pstate(struct powernow_k8_data *data,
{
int i;
u32 hi = 0, lo = 0;
rdmsr(MSR_PSTATE_CUR_LIMIT, hi, lo);
data->max_hw_pstate = (hi & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT;
rdmsr(MSR_PSTATE_CUR_LIMIT, lo, hi);
data->max_hw_pstate = (lo & HW_PSTATE_MAX_MASK) >> HW_PSTATE_MAX_SHIFT;

for (i = 0; i < data->acpi_data.state_count; i++) {
u32 index;
Expand Down

0 comments on commit 9dc2f8e

Please sign in to comment.