By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1655
Collapse All | Expand All

(-)a/src/hardware.cpp (-1 / +1 lines)
Lines 1083-1089 bool HardwareInfo::setCPUFreq ( cpufreq_type cpufreq, int limit ) { Link Here
1083
	}
1083
	}
1084
1084
1085
	if (cpuFreqAllowed  == 0) {
1085
	if (cpuFreqAllowed  == 0) {
1086
		kdError() << "Could not set CPU Freq, this not the needed privileges." << endl;
1086
		kdError() << "Could not set CPU Freq - insufficient privileges." << endl;
1087
		return false;
1087
		return false;
1088
	}
1088
	}
1089
1089
(-)a/src/tdepowersave.cpp (-2 / +2 lines)
Lines 1889-1895 void tdepowersave::setSchemeSettings(){ Link Here
1889
	}
1889
	}
1890
1890
1891
	// --> set CPU Freq settings
1891
	// --> set CPU Freq settings
1892
	if(hwinfo->supportCPUFreq()) {
1892
	if(hwinfo->supportCPUFreq() && hwinfo->isCpuFreqAllowed()) {
1893
		hwinfo->setCPUFreq( settings->cpuFreqPolicy, settings->cpuFreqDynamicPerformance);
1893
		hwinfo->setCPUFreq( settings->cpuFreqPolicy, settings->cpuFreqDynamicPerformance);
1894
	}
1894
	}
1895
1895
Lines 2326-2332 void tdepowersave::handleResumeSignal() { Link Here
2326
	setAutoDimm(true);
2326
	setAutoDimm(true);
2327
2327
2328
	// reset the CPU Freq Policy ... for more see https://bugzilla.novell.com/show_bug.cgi?id=223164
2328
	// reset the CPU Freq Policy ... for more see https://bugzilla.novell.com/show_bug.cgi?id=223164
2329
	if(hwinfo->supportCPUFreq()) {
2329
	if(hwinfo->supportCPUFreq() && hwinfo->isCpuFreqAllowed()) {
2330
		hwinfo->setCPUFreq( settings->cpuFreqPolicy, settings->cpuFreqDynamicPerformance );
2330
		hwinfo->setCPUFreq( settings->cpuFreqPolicy, settings->cpuFreqDynamicPerformance );
2331
	}
2331
	}
2332
2332

Return to bug 1655