The patch titled cpufreq: acpi-cpufreq: Ignore failure from acpi_cpufreq_early_init_acpi has been removed from the -mm tree. Its filename is cpufreq-acpi-cpufreq-ignore-failure-from-acpi_cpufreq_early_init_acpi.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: cpufreq: acpi-cpufreq: Ignore failure from acpi_cpufreq_early_init_acpi From: Dave Jones <davej@xxxxxxxxxx> Ignore the return value of early_init_acpi(), as it can give false error messages. If there is something really wrong, then register_driver will fail cleanly with EINVAL later. [ background: modprobe acpi-cpufreq on systems not capable of speed-scaling started failing with 'invalid argument', where previously it would only ever -ENODEV I'm not 100% happy with the solution. It'd be better to handle failure properly, but this is a low-impact change for 2.6.18 We can always revisit doing this better in .19 --davej.] Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@xxxxxxxxx> Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff -puN arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c~cpufreq-acpi-cpufreq-ignore-failure-from-acpi_cpufreq_early_init_acpi arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c --- a/arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c~cpufreq-acpi-cpufreq-ignore-failure-from-acpi_cpufreq_early_init_acpi +++ a/arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c @@ -567,16 +567,11 @@ static struct cpufreq_driver acpi_cpufre static int __init acpi_cpufreq_init (void) { - int result = 0; - dprintk("acpi_cpufreq_init\n"); - result = acpi_cpufreq_early_init_acpi(); + acpi_cpufreq_early_init_acpi(); - if (!result) - result = cpufreq_register_driver(&acpi_cpufreq_driver); - - return (result); + return cpufreq_register_driver(&acpi_cpufreq_driver); } _ Patches currently in -mm which might be from davej@xxxxxxxxxx are git-agpgart.patch git-cpufreq.patch remove-silly-messages-from-input-layer.patch via-sata-oops-on-init.patch git-netdev-all.patch git-net.patch tickle-nmi-watchdog-on-serial-output.patch tickle-nmi-watchdog-on-serial-output-fix.patch git-scsi-misc.patch git-watchdog.patch debug-variants-of-linked-list-macros.patch tty_ioc-keep-davej-sane.patch single-bit-flip-detector.patch single-bit-flip-detector-tidy.patch lockdep-print-kernel-version.patch remove-another-configh.patch sched-dont-print-migration-cost-when-only-1-cpu.patch fbcon-use-persistent-allocation-for-cursor-blinking.patch post-halloween-doc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html