rpms/kernel/FC-6 kernel-2.6.spec, 1.2796, 1.2797 linux-2.6-cpufreq-drop-sticky.patch, 1.1, 1.2

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Oct 16 18:18:09 UTC 2006


Author: davej

Update of /cvs/dist/rpms/kernel/FC-6
In directory cvs.devel.redhat.com:/tmp/cvs-serv27971

Modified Files:
	kernel-2.6.spec linux-2.6-cpufreq-drop-sticky.patch 
Log Message:
Hush noisy acpi-cpufreq modprobing. (#201463)


Index: kernel-2.6.spec
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-6/kernel-2.6.spec,v
retrieving revision 1.2796
retrieving revision 1.2797
diff -u -r1.2796 -r1.2797
--- kernel-2.6.spec	16 Oct 2006 18:07:52 -0000	1.2796
+++ kernel-2.6.spec	16 Oct 2006 18:18:07 -0000	1.2797
@@ -2019,6 +2019,7 @@
 - Silence another noisy boot-time printk. (#210810)
 - Remove broken VIA quirk that prevented booting on some EPIAs (#210817)
 - Fix JBD crash with 1K blocksize filesystems. (#209005)
+- Hush noisy acpi-cpufreq modprobing. (#201463)
 
 * Mon Oct 16 2006 Stephen C. Tweedie <sct at redhat.com>
 - Add RPM release number to the Xen build version

linux-2.6-cpufreq-drop-sticky.patch:
 acpi-cpufreq.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

Index: linux-2.6-cpufreq-drop-sticky.patch
===================================================================
RCS file: /cvs/dist/rpms/kernel/FC-6/linux-2.6-cpufreq-drop-sticky.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- linux-2.6-cpufreq-drop-sticky.patch	1 Oct 2006 23:35:53 -0000	1.1
+++ linux-2.6-cpufreq-drop-sticky.patch	16 Oct 2006 18:18:07 -0000	1.2
@@ -8,3 +8,24 @@
  };
  
  
+--- linux-2.6.18.noarch/arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c~	2006-10-16 14:10:33.000000000 -0400
++++ linux-2.6.18.noarch/arch/i386/kernel/cpu/cpufreq/acpi-cpufreq.c	2006-10-16 14:16:32.000000000 -0400
+@@ -566,11 +566,17 @@ static struct cpufreq_driver acpi_cpufre
+ static int __init
+ acpi_cpufreq_init (void)
+ {
++	int ret;
++
+ 	dprintk("acpi_cpufreq_init\n");
+ 
+ 	acpi_cpufreq_early_init_acpi();
+ 
+- 	return cpufreq_register_driver(&acpi_cpufreq_driver);
++	ret = cpufreq_register_driver(&acpi_cpufreq_driver);
++	if (ret!=0)
++		return -EINVAL;
++
++	return 0;
+ }
+ 
+ 




More information about the fedora-cvs-commits mailing list