 b9170836d1
			
		
	
	
	b9170836d1
	
	
	
		
			
			A new cpufreq module, based on the ondemand one with my additional patches just posted. This one is more suitable for battery environments where its probably more appealing to have the cpu freq gracefully increase and decrease rather than flip between the min and max freq's. N.B. Bruno Ducrot pointed out that the amd64's "do have unacceptable latency between min and max freq transition, due to the step-by-step requirements (200MHz IIRC)"; so AMD64 users would probably benefit from this too. Signed-off-by: Alexander Clouter <alex-kernel@digriz.org.uk> Signed-off-by: Dave Jones <davej@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			535 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			535 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # CPUfreq core
 | |
| obj-$(CONFIG_CPU_FREQ)			+= cpufreq.o
 | |
| # CPUfreq stats
 | |
| obj-$(CONFIG_CPU_FREQ_STAT)             += cpufreq_stats.o
 | |
| 
 | |
| # CPUfreq governors 
 | |
| obj-$(CONFIG_CPU_FREQ_GOV_PERFORMANCE)	+= cpufreq_performance.o
 | |
| obj-$(CONFIG_CPU_FREQ_GOV_POWERSAVE)	+= cpufreq_powersave.o
 | |
| obj-$(CONFIG_CPU_FREQ_GOV_USERSPACE)	+= cpufreq_userspace.o
 | |
| obj-$(CONFIG_CPU_FREQ_GOV_ONDEMAND)	+= cpufreq_ondemand.o
 | |
| obj-$(CONFIG_CPU_FREQ_GOV_CONSERVATIVE)	+= cpufreq_conservative.o
 | |
| 
 | |
| # CPUfreq cross-arch helpers
 | |
| obj-$(CONFIG_CPU_FREQ_TABLE)		+= freq_table.o
 | |
| 
 |