|
From: <mar...@us...> - 2007-07-12 22:21:24
|
Revision: 1130
http://svn.sourceforge.net/hackndev/?rev=1130&view=rev
Author: marex_z71
Date: 2007-07-12 15:21:23 -0700 (Thu, 12 Jul 2007)
Log Message:
-----------
PalmLD, PalmTX, PalmTT5, PalmZ72, PalmT650: add ability to use cpufreq without crippled "milky" display
Modified Paths:
--------------
linux4palm/linux/trunk/drivers/video/pxafb.c
Modified: linux4palm/linux/trunk/drivers/video/pxafb.c
===================================================================
--- linux4palm/linux/trunk/drivers/video/pxafb.c 2007-07-12 22:19:52 UTC (rev 1129)
+++ linux4palm/linux/trunk/drivers/video/pxafb.c 2007-07-12 22:21:23 UTC (rev 1130)
@@ -1415,11 +1415,15 @@
#endif
#ifdef CONFIG_CPU_FREQ
-#ifndef CONFIG_MACH_T3XSCALE
+#if !(defined(CONFIG_MACH_T3XSCALE) || defined(CONFIG_MACH_XSCALE_PALMLD) || \
+ defined(CONFIG_MACH_XSCALE_PALMTX) || defined(CONFIG_MACH_PALMZ72) || \
+ defined(CONFIG_MACH_XSCALE_PALMTT5) || \
+ defined(CONFIG_MACH_XSCALE_PALMTREO650))
fbi->freq_transition.notifier_call = pxafb_freq_transition;
fbi->freq_policy.notifier_call = pxafb_freq_policy;
cpufreq_register_notifier(&fbi->freq_transition, CPUFREQ_TRANSITION_NOTIFIER);
cpufreq_register_notifier(&fbi->freq_policy, CPUFREQ_POLICY_NOTIFIER);
+
#endif
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|