Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/cpufreq
* master.kernel.org:/pub/scm/linux/kernel/git/davej/cpufreq: [CPUFREQ] longhaul: Kill off warnings introduced by recent changes. [CPUFREQ] Uninitialized use of cmd.val in arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c:acpi_cpufreq_target() [CPUFREQ] Longhaul - Always guess FSB [CPUFREQ] Longhaul - Fix up powersaver assumptions. [CPUFREQ] longhaul: Fix up unreachable code. [CPUFREQ] speedstep-centrino: missing space and bracket [CPUFREQ] Bug fix for acpi-cpufreq and cpufreq_stats oops on frequency change notification [CPUFREQ] select consistently
This commit is contained in:
commit
de9e957f12
@ -373,8 +373,8 @@ static int acpi_cpufreq_target(struct cpufreq_policy *policy,
|
|||||||
cpumask_t online_policy_cpus;
|
cpumask_t online_policy_cpus;
|
||||||
struct drv_cmd cmd;
|
struct drv_cmd cmd;
|
||||||
unsigned int msr;
|
unsigned int msr;
|
||||||
unsigned int next_state = 0;
|
unsigned int next_state = 0; /* Index into freq_table */
|
||||||
unsigned int next_perf_state = 0;
|
unsigned int next_perf_state = 0; /* Index into perf table */
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int result = 0;
|
int result = 0;
|
||||||
|
|
||||||
@ -420,6 +420,7 @@ static int acpi_cpufreq_target(struct cpufreq_policy *policy,
|
|||||||
msr =
|
msr =
|
||||||
(u32) perf->states[next_perf_state].
|
(u32) perf->states[next_perf_state].
|
||||||
control & INTEL_MSR_RANGE;
|
control & INTEL_MSR_RANGE;
|
||||||
|
cmd.val = get_cur_val(online_policy_cpus);
|
||||||
cmd.val = (cmd.val & ~INTEL_MSR_RANGE) | msr;
|
cmd.val = (cmd.val & ~INTEL_MSR_RANGE) | msr;
|
||||||
break;
|
break;
|
||||||
case SYSTEM_IO_CAPABLE:
|
case SYSTEM_IO_CAPABLE:
|
||||||
@ -439,8 +440,8 @@ static int acpi_cpufreq_target(struct cpufreq_policy *policy,
|
|||||||
else
|
else
|
||||||
cpu_set(policy->cpu, cmd.mask);
|
cpu_set(policy->cpu, cmd.mask);
|
||||||
|
|
||||||
freqs.old = data->freq_table[perf->state].frequency;
|
freqs.old = perf->states[perf->state].core_frequency * 1000;
|
||||||
freqs.new = data->freq_table[next_perf_state].frequency;
|
freqs.new = data->freq_table[next_state].frequency;
|
||||||
for_each_cpu_mask(i, cmd.mask) {
|
for_each_cpu_mask(i, cmd.mask) {
|
||||||
freqs.cpu = i;
|
freqs.cpu = i;
|
||||||
cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
|
cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
|
||||||
@ -677,6 +678,7 @@ static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy)
|
|||||||
valid_states++;
|
valid_states++;
|
||||||
}
|
}
|
||||||
data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
|
data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
|
||||||
|
perf->state = 0;
|
||||||
|
|
||||||
result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
|
result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
|
||||||
if (result)
|
if (result)
|
||||||
|
@ -52,6 +52,10 @@
|
|||||||
#define CPU_EZRA_T 4
|
#define CPU_EZRA_T 4
|
||||||
#define CPU_NEHEMIAH 5
|
#define CPU_NEHEMIAH 5
|
||||||
|
|
||||||
|
/* Flags */
|
||||||
|
#define USE_ACPI_C3 (1 << 1)
|
||||||
|
#define USE_NORTHBRIDGE (1 << 2)
|
||||||
|
|
||||||
static int cpu_model;
|
static int cpu_model;
|
||||||
static unsigned int numscales=16;
|
static unsigned int numscales=16;
|
||||||
static unsigned int fsb;
|
static unsigned int fsb;
|
||||||
@ -68,7 +72,7 @@ static unsigned int minmult, maxmult;
|
|||||||
static int can_scale_voltage;
|
static int can_scale_voltage;
|
||||||
static struct acpi_processor *pr = NULL;
|
static struct acpi_processor *pr = NULL;
|
||||||
static struct acpi_processor_cx *cx = NULL;
|
static struct acpi_processor_cx *cx = NULL;
|
||||||
static int port22_en;
|
static u8 longhaul_flags;
|
||||||
|
|
||||||
/* Module parameters */
|
/* Module parameters */
|
||||||
static int scale_voltage;
|
static int scale_voltage;
|
||||||
@ -80,7 +84,6 @@ static int ignore_latency;
|
|||||||
/* Clock ratios multiplied by 10 */
|
/* Clock ratios multiplied by 10 */
|
||||||
static int clock_ratio[32];
|
static int clock_ratio[32];
|
||||||
static int eblcr_table[32];
|
static int eblcr_table[32];
|
||||||
static unsigned int highest_speed, lowest_speed; /* kHz */
|
|
||||||
static int longhaul_version;
|
static int longhaul_version;
|
||||||
static struct cpufreq_frequency_table *longhaul_table;
|
static struct cpufreq_frequency_table *longhaul_table;
|
||||||
|
|
||||||
@ -178,7 +181,7 @@ static void do_powersaver(int cx_address, unsigned int clock_ratio_index)
|
|||||||
safe_halt();
|
safe_halt();
|
||||||
/* Change frequency on next halt or sleep */
|
/* Change frequency on next halt or sleep */
|
||||||
wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
|
wrmsrl(MSR_VIA_LONGHAUL, longhaul.val);
|
||||||
if (port22_en) {
|
if (!cx_address) {
|
||||||
ACPI_FLUSH_CPU_CACHE();
|
ACPI_FLUSH_CPU_CACHE();
|
||||||
/* Invoke C1 */
|
/* Invoke C1 */
|
||||||
halt();
|
halt();
|
||||||
@ -189,7 +192,6 @@ static void do_powersaver(int cx_address, unsigned int clock_ratio_index)
|
|||||||
/* Dummy op - must do something useless after P_LVL3 read */
|
/* Dummy op - must do something useless after P_LVL3 read */
|
||||||
t = inl(acpi_fadt.xpm_tmr_blk.address);
|
t = inl(acpi_fadt.xpm_tmr_blk.address);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Disable bus ratio bit */
|
/* Disable bus ratio bit */
|
||||||
local_irq_disable();
|
local_irq_disable();
|
||||||
longhaul.bits.RevisionKey = longhaul.bits.RevisionID;
|
longhaul.bits.RevisionKey = longhaul.bits.RevisionID;
|
||||||
@ -243,15 +245,14 @@ static void longhaul_setstate(unsigned int clock_ratio_index)
|
|||||||
outb(0xFF,0xA1); /* Overkill */
|
outb(0xFF,0xA1); /* Overkill */
|
||||||
outb(0xFE,0x21); /* TMR0 only */
|
outb(0xFE,0x21); /* TMR0 only */
|
||||||
|
|
||||||
if (pr->flags.bm_control) {
|
if (longhaul_flags & USE_NORTHBRIDGE) {
|
||||||
|
/* Disable AGP and PCI arbiters */
|
||||||
|
outb(3, 0x22);
|
||||||
|
} else if ((pr != NULL) && pr->flags.bm_control) {
|
||||||
/* Disable bus master arbitration */
|
/* Disable bus master arbitration */
|
||||||
acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
|
acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
|
||||||
ACPI_MTX_DO_NOT_LOCK);
|
ACPI_MTX_DO_NOT_LOCK);
|
||||||
} else if (port22_en) {
|
|
||||||
/* Disable AGP and PCI arbiters */
|
|
||||||
outb(3, 0x22);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (longhaul_version) {
|
switch (longhaul_version) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -278,22 +279,25 @@ static void longhaul_setstate(unsigned int clock_ratio_index)
|
|||||||
* to work in practice.
|
* to work in practice.
|
||||||
*/
|
*/
|
||||||
case TYPE_POWERSAVER:
|
case TYPE_POWERSAVER:
|
||||||
|
if (longhaul_flags & USE_ACPI_C3) {
|
||||||
/* Don't allow wakeup */
|
/* Don't allow wakeup */
|
||||||
acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
|
acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
|
||||||
ACPI_MTX_DO_NOT_LOCK);
|
ACPI_MTX_DO_NOT_LOCK);
|
||||||
do_powersaver(cx->address, clock_ratio_index);
|
do_powersaver(cx->address, clock_ratio_index);
|
||||||
|
} else {
|
||||||
|
do_powersaver(0, clock_ratio_index);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pr->flags.bm_control) {
|
if (longhaul_flags & USE_NORTHBRIDGE) {
|
||||||
|
/* Enable arbiters */
|
||||||
|
outb(0, 0x22);
|
||||||
|
} else if ((pr != NULL) && pr->flags.bm_control) {
|
||||||
/* Enable bus master arbitration */
|
/* Enable bus master arbitration */
|
||||||
acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
|
acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
|
||||||
ACPI_MTX_DO_NOT_LOCK);
|
ACPI_MTX_DO_NOT_LOCK);
|
||||||
} else if (port22_en) {
|
|
||||||
/* Enable arbiters */
|
|
||||||
outb(0, 0x22);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
outb(pic2_mask,0xA1); /* restore mask */
|
outb(pic2_mask,0xA1); /* restore mask */
|
||||||
outb(pic1_mask,0x21);
|
outb(pic1_mask,0x21);
|
||||||
|
|
||||||
@ -314,12 +318,12 @@ static void longhaul_setstate(unsigned int clock_ratio_index)
|
|||||||
|
|
||||||
#define ROUNDING 0xf
|
#define ROUNDING 0xf
|
||||||
|
|
||||||
static int _guess(int guess)
|
static int _guess(int guess, int mult)
|
||||||
{
|
{
|
||||||
int target;
|
int target;
|
||||||
|
|
||||||
target = ((maxmult/10)*guess);
|
target = ((mult/10)*guess);
|
||||||
if (maxmult%10 != 0)
|
if (mult%10 != 0)
|
||||||
target += (guess/2);
|
target += (guess/2);
|
||||||
target += ROUNDING/2;
|
target += ROUNDING/2;
|
||||||
target &= ~ROUNDING;
|
target &= ~ROUNDING;
|
||||||
@ -327,17 +331,17 @@ static int _guess(int guess)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int guess_fsb(void)
|
static int guess_fsb(int mult)
|
||||||
{
|
{
|
||||||
int speed = (cpu_khz/1000);
|
int speed = (cpu_khz/1000);
|
||||||
int i;
|
int i;
|
||||||
int speeds[3] = { 66, 100, 133 };
|
int speeds[] = { 66, 100, 133, 200 };
|
||||||
|
|
||||||
speed += ROUNDING/2;
|
speed += ROUNDING/2;
|
||||||
speed &= ~ROUNDING;
|
speed &= ~ROUNDING;
|
||||||
|
|
||||||
for (i=0; i<3; i++) {
|
for (i=0; i<4; i++) {
|
||||||
if (_guess(speeds[i]) == speed)
|
if (_guess(speeds[i], mult) == speed)
|
||||||
return speeds[i];
|
return speeds[i];
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
@ -354,9 +358,7 @@ static int __init longhaul_get_ranges(void)
|
|||||||
130, 150, 160, 140, -1, 155, -1, 145 };
|
130, 150, 160, 140, -1, 155, -1, 145 };
|
||||||
unsigned int j, k = 0;
|
unsigned int j, k = 0;
|
||||||
union msr_longhaul longhaul;
|
union msr_longhaul longhaul;
|
||||||
unsigned long lo, hi;
|
int mult = 0;
|
||||||
unsigned int eblcr_fsb_table_v1[] = { 66, 133, 100, -1 };
|
|
||||||
unsigned int eblcr_fsb_table_v2[] = { 133, 100, -1, 66 };
|
|
||||||
|
|
||||||
switch (longhaul_version) {
|
switch (longhaul_version) {
|
||||||
case TYPE_LONGHAUL_V1:
|
case TYPE_LONGHAUL_V1:
|
||||||
@ -364,30 +366,18 @@ static int __init longhaul_get_ranges(void)
|
|||||||
/* Ugh, Longhaul v1 didn't have the min/max MSRs.
|
/* Ugh, Longhaul v1 didn't have the min/max MSRs.
|
||||||
Assume min=3.0x & max = whatever we booted at. */
|
Assume min=3.0x & max = whatever we booted at. */
|
||||||
minmult = 30;
|
minmult = 30;
|
||||||
maxmult = longhaul_get_cpu_mult();
|
maxmult = mult = longhaul_get_cpu_mult();
|
||||||
rdmsr (MSR_IA32_EBL_CR_POWERON, lo, hi);
|
|
||||||
invalue = (lo & (1<<18|1<<19)) >>18;
|
|
||||||
if (cpu_model==CPU_SAMUEL || cpu_model==CPU_SAMUEL2)
|
|
||||||
fsb = eblcr_fsb_table_v1[invalue];
|
|
||||||
else
|
|
||||||
fsb = guess_fsb();
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TYPE_POWERSAVER:
|
case TYPE_POWERSAVER:
|
||||||
/* Ezra-T */
|
/* Ezra-T */
|
||||||
if (cpu_model==CPU_EZRA_T) {
|
if (cpu_model==CPU_EZRA_T) {
|
||||||
|
minmult = 30;
|
||||||
rdmsrl (MSR_VIA_LONGHAUL, longhaul.val);
|
rdmsrl (MSR_VIA_LONGHAUL, longhaul.val);
|
||||||
invalue = longhaul.bits.MaxMHzBR;
|
invalue = longhaul.bits.MaxMHzBR;
|
||||||
if (longhaul.bits.MaxMHzBR4)
|
if (longhaul.bits.MaxMHzBR4)
|
||||||
invalue += 16;
|
invalue += 16;
|
||||||
maxmult=ezra_t_multipliers[invalue];
|
maxmult = mult = ezra_t_multipliers[invalue];
|
||||||
|
|
||||||
invalue = longhaul.bits.MinMHzBR;
|
|
||||||
if (longhaul.bits.MinMHzBR4 == 1)
|
|
||||||
minmult = 30;
|
|
||||||
else
|
|
||||||
minmult = ezra_t_multipliers[invalue];
|
|
||||||
fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -407,21 +397,16 @@ static int __init longhaul_get_ranges(void)
|
|||||||
* But it works, so we don't grumble.
|
* But it works, so we don't grumble.
|
||||||
*/
|
*/
|
||||||
minmult=40;
|
minmult=40;
|
||||||
maxmult=longhaul_get_cpu_mult();
|
maxmult = mult = longhaul_get_cpu_mult();
|
||||||
|
|
||||||
/* Starting with the 1.2GHz parts, theres a 200MHz bus. */
|
|
||||||
if ((cpu_khz/maxmult) > 13400)
|
|
||||||
fsb = 200;
|
|
||||||
else
|
|
||||||
fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
fsb = guess_fsb(mult);
|
||||||
|
|
||||||
dprintk ("MinMult:%d.%dx MaxMult:%d.%dx\n",
|
dprintk ("MinMult:%d.%dx MaxMult:%d.%dx\n",
|
||||||
minmult/10, minmult%10, maxmult/10, maxmult%10);
|
minmult/10, minmult%10, maxmult/10, maxmult%10);
|
||||||
|
|
||||||
if (fsb == -1) {
|
if (fsb == 0) {
|
||||||
printk (KERN_INFO PFX "Invalid (reserved) FSB!\n");
|
printk (KERN_INFO PFX "Invalid (reserved) FSB!\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
@ -691,27 +676,32 @@ static int __init longhaul_cpu_init(struct cpufreq_policy *policy)
|
|||||||
/* Find ACPI data for processor */
|
/* Find ACPI data for processor */
|
||||||
acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
|
acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
|
||||||
&longhaul_walk_callback, NULL, (void *)&pr);
|
&longhaul_walk_callback, NULL, (void *)&pr);
|
||||||
if (pr == NULL)
|
|
||||||
goto err_acpi;
|
|
||||||
|
|
||||||
if (longhaul_version == TYPE_POWERSAVER) {
|
|
||||||
/* Check ACPI support for C3 state */
|
/* Check ACPI support for C3 state */
|
||||||
|
if ((pr != NULL) && (longhaul_version == TYPE_POWERSAVER)) {
|
||||||
cx = &pr->power.states[ACPI_STATE_C3];
|
cx = &pr->power.states[ACPI_STATE_C3];
|
||||||
if (cx->address > 0 &&
|
if (cx->address > 0 &&
|
||||||
(cx->latency <= 1000 || ignore_latency != 0) ) {
|
(cx->latency <= 1000 || ignore_latency != 0) ) {
|
||||||
|
longhaul_flags |= USE_ACPI_C3;
|
||||||
goto print_support_type;
|
goto print_support_type;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* Check ACPI support for bus master arbiter disable */
|
/* Check if northbridge is friendly */
|
||||||
if (!pr->flags.bm_control) {
|
|
||||||
if (enable_arbiter_disable()) {
|
if (enable_arbiter_disable()) {
|
||||||
port22_en = 1;
|
longhaul_flags |= USE_NORTHBRIDGE;
|
||||||
} else {
|
goto print_support_type;
|
||||||
goto err_acpi;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* No ACPI C3 or we can't use it */
|
||||||
|
/* Check ACPI support for bus master arbiter disable */
|
||||||
|
if ((pr == NULL) || !(pr->flags.bm_control)) {
|
||||||
|
printk(KERN_ERR PFX
|
||||||
|
"No ACPI support. Unsupported northbridge.\n");
|
||||||
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
print_support_type:
|
print_support_type:
|
||||||
if (!port22_en) {
|
if (!(longhaul_flags & USE_NORTHBRIDGE)) {
|
||||||
printk (KERN_INFO PFX "Using ACPI support.\n");
|
printk (KERN_INFO PFX "Using ACPI support.\n");
|
||||||
} else {
|
} else {
|
||||||
printk (KERN_INFO PFX "Using northbridge support.\n");
|
printk (KERN_INFO PFX "Using northbridge support.\n");
|
||||||
@ -736,10 +726,6 @@ print_support_type:
|
|||||||
cpufreq_frequency_table_get_attr(longhaul_table, policy->cpu);
|
cpufreq_frequency_table_get_attr(longhaul_table, policy->cpu);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_acpi:
|
|
||||||
printk(KERN_ERR PFX "No ACPI support. Unsupported northbridge. Aborting.\n");
|
|
||||||
return -ENODEV;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __devexit longhaul_cpu_exit(struct cpufreq_policy *policy)
|
static int __devexit longhaul_cpu_exit(struct cpufreq_policy *policy)
|
||||||
@ -774,8 +760,8 @@ static int __init longhaul_init(void)
|
|||||||
|
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
if (num_online_cpus() > 1) {
|
if (num_online_cpus() > 1) {
|
||||||
return -ENODEV;
|
|
||||||
printk(KERN_ERR PFX "More than 1 CPU detected, longhaul disabled.\n");
|
printk(KERN_ERR PFX "More than 1 CPU detected, longhaul disabled.\n");
|
||||||
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_X86_IO_APIC
|
#ifdef CONFIG_X86_IO_APIC
|
||||||
|
@ -533,9 +533,9 @@ static int centrino_cpu_init_acpi(struct cpufreq_policy *policy)
|
|||||||
|
|
||||||
/* notify BIOS that we exist */
|
/* notify BIOS that we exist */
|
||||||
acpi_processor_notify_smm(THIS_MODULE);
|
acpi_processor_notify_smm(THIS_MODULE);
|
||||||
printk("speedstep-centrino with X86_SPEEDSTEP_CENTRINO_ACPI"
|
printk("speedstep-centrino with X86_SPEEDSTEP_CENTRINO_ACPI "
|
||||||
"config is deprecated.\n "
|
"config is deprecated.\n "
|
||||||
"Use X86_ACPI_CPUFREQ (acpi-cpufreq instead.\n" );
|
"Use X86_ACPI_CPUFREQ (acpi-cpufreq) instead.\n" );
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
@ -49,6 +49,7 @@ config X86_SPEEDSTEP_CENTRINO_ACPI
|
|||||||
|
|
||||||
config X86_ACPI_CPUFREQ
|
config X86_ACPI_CPUFREQ
|
||||||
tristate "ACPI Processor P-States driver"
|
tristate "ACPI Processor P-States driver"
|
||||||
|
select CPU_FREQ_TABLE
|
||||||
depends on ACPI_PROCESSOR
|
depends on ACPI_PROCESSOR
|
||||||
help
|
help
|
||||||
This driver adds a CPUFreq driver which utilizes the ACPI
|
This driver adds a CPUFreq driver which utilizes the ACPI
|
||||||
|
@ -285,6 +285,7 @@ cpufreq_stat_notifier_trans (struct notifier_block *nb, unsigned long val,
|
|||||||
stat = cpufreq_stats_table[freq->cpu];
|
stat = cpufreq_stats_table[freq->cpu];
|
||||||
if (!stat)
|
if (!stat)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
old_index = freq_table_get_index(stat, freq->old);
|
old_index = freq_table_get_index(stat, freq->old);
|
||||||
new_index = freq_table_get_index(stat, freq->new);
|
new_index = freq_table_get_index(stat, freq->new);
|
||||||
|
|
||||||
@ -292,6 +293,9 @@ cpufreq_stat_notifier_trans (struct notifier_block *nb, unsigned long val,
|
|||||||
if (old_index == new_index)
|
if (old_index == new_index)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
if (old_index == -1 || new_index == -1)
|
||||||
|
return 0;
|
||||||
|
|
||||||
spin_lock(&cpufreq_stats_lock);
|
spin_lock(&cpufreq_stats_lock);
|
||||||
stat->last_index = new_index;
|
stat->last_index = new_index;
|
||||||
#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
|
#ifdef CONFIG_CPU_FREQ_STAT_DETAILS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user