Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 132671
b: refs/heads/master
c: 9142022
h: refs/heads/master
i:
  132669: 01578f5
  132667: d858da4
  132663: 0b0bb39
  132655: d51f876
  132639: 8cd2d7a
  132607: 305e076
v: v3
  • Loading branch information
Dave Jones committed Feb 25, 2009
1 parent 3e083f9 commit f1f51d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 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: 3a58df35a64a1e0ac32c30ea629a513dec2fe711
refs/heads/master: 91420220d278584693d11a800b78fdc20e8fe10e
11 changes: 4 additions & 7 deletions trunk/arch/x86/kernel/cpu/cpufreq/longhaul.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,13 +511,10 @@ static int __init longhaul_get_ranges(void)
}
}
if (min_i != j) {
unsigned int temp;
temp = longhaul_table[j].frequency;
longhaul_table[j].frequency = longhaul_table[min_i].frequency;
longhaul_table[min_i].frequency = temp;
temp = longhaul_table[j].index;
longhaul_table[j].index = longhaul_table[min_i].index;
longhaul_table[min_i].index = temp;
swap(longhaul_table[j].frequency,
longhaul_table[min_i].frequency);
swap(longhaul_table[j].index,
longhaul_table[min_i].index);
}
}

Expand Down

0 comments on commit f1f51d2

Please sign in to comment.