diff options
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/longhaul.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c index 83a8793f1db8..43bbf948d45d 100644 --- a/arch/i386/kernel/cpu/cpufreq/longhaul.c +++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c | |||
@@ -65,7 +65,7 @@ static int port22_en = 0; | |||
65 | 65 | ||
66 | /* Module parameters */ | 66 | /* Module parameters */ |
67 | static int dont_scale_voltage; | 67 | static int dont_scale_voltage; |
68 | 68 | static int ignore_latency = 0; | |
69 | 69 | ||
70 | #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "longhaul", msg) | 70 | #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_DRIVER, "longhaul", msg) |
71 | 71 | ||
@@ -665,8 +665,10 @@ static int __init longhaul_cpu_init(struct cpufreq_policy *policy) | |||
665 | if (longhaul_version == TYPE_POWERSAVER) { | 665 | if (longhaul_version == TYPE_POWERSAVER) { |
666 | /* Check ACPI support for C3 state */ | 666 | /* Check ACPI support for C3 state */ |
667 | cx = &pr->power.states[ACPI_STATE_C3]; | 667 | cx = &pr->power.states[ACPI_STATE_C3]; |
668 | if (cx->address == 0 || cx->latency > 1000) | 668 | if (cx->address == 0 || |
669 | (cx->latency > 1000 && ignore_latency == 0) ) | ||
669 | goto err_acpi; | 670 | goto err_acpi; |
671 | |||
670 | } else { | 672 | } else { |
671 | /* Check ACPI support for bus master arbiter disable */ | 673 | /* Check ACPI support for bus master arbiter disable */ |
672 | if (!pr->flags.bm_control) { | 674 | if (!pr->flags.bm_control) { |
@@ -773,6 +775,8 @@ static void __exit longhaul_exit(void) | |||
773 | 775 | ||
774 | module_param (dont_scale_voltage, int, 0644); | 776 | module_param (dont_scale_voltage, int, 0644); |
775 | MODULE_PARM_DESC(dont_scale_voltage, "Don't scale voltage of processor"); | 777 | MODULE_PARM_DESC(dont_scale_voltage, "Don't scale voltage of processor"); |
778 | module_param(ignore_latency, int, 0644); | ||
779 | MODULE_PARM_DESC(ignore_latency, "Skip ACPI C3 latency test"); | ||
776 | 780 | ||
777 | MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>"); | 781 | MODULE_AUTHOR ("Dave Jones <davej@codemonkey.org.uk>"); |
778 | MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors."); | 782 | MODULE_DESCRIPTION ("Longhaul driver for VIA Cyrix processors."); |
@@ -780,4 +784,3 @@ MODULE_LICENSE ("GPL"); | |||
780 | 784 | ||
781 | late_initcall(longhaul_init); | 785 | late_initcall(longhaul_init); |
782 | module_exit(longhaul_exit); | 786 | module_exit(longhaul_exit); |
783 | |||