Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48637
b: refs/heads/master
c: 9addf3b
h: refs/heads/master
i:
  48635: fafb4b8
v: v3
  • Loading branch information
Rafa� Bilski authored and Dave Jones committed Feb 11, 2007
1 parent 1c7ab4d commit d82c0e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 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: f0ec313a89a7377f440c815f82b0370bd67f62c6
refs/heads/master: 9addf3b6388459f315adc728d27d34603a00d427
23 changes: 8 additions & 15 deletions trunk/arch/i386/kernel/cpu/cpufreq/longhaul.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,22 +358,15 @@ static int __init longhaul_get_ranges(void)
* C3 is booting at max anyway. */
maxmult = mult;
/* Get min multiplier */
switch (longhaul_version) {
case TYPE_LONGHAUL_V1:
case TYPE_LONGHAUL_V2:
minmult = 30;
switch (cpu_model) {
case CPU_NEHEMIAH:
minmult = 50;
break;

case TYPE_POWERSAVER:
/* Ezra-T */
if (cpu_model == CPU_EZRA_T)
minmult = 30;
/* Nehemiah */
else if (cpu_model == CPU_NEHEMIAH)
minmult = 50;
/* Nehemiah C */
else if (cpu_model == CPU_NEHEMIAH_C)
minmult = 40;
case CPU_NEHEMIAH_C:
minmult = 40;
break;
default:
minmult = 30;
break;
}

Expand Down

0 comments on commit d82c0e2

Please sign in to comment.