power_frequency moved to drivers/cpufreq/cpufreq.c which has to be compiled in, no need to export it.
intel_idle can a be module though... Signed-off-by: Thomas Renninger <[email protected]> CC: Linus Torvalds <[email protected]> CC: Andrew Morton <[email protected]> CC: Thomas Gleixner <[email protected]> CC: Masami Hiramatsu <[email protected]> CC: Frank Eigler <[email protected]> CC: Steven Rostedt <[email protected]> CC: Kevin Hilman <[email protected]> CC: Peter Zijlstra <[email protected]> CC: [email protected] CC: [email protected] CC: [email protected] CC: [email protected] CC: Jean Pihet <[email protected]> CC: Pierre Tardy <[email protected]> CC: Frederic Weisbecker <[email protected]> CC: Tejun Heo <[email protected]> CC: Mathieu Desnoyers <[email protected]> CC: Arjan van de Ven <[email protected]> CC: Ingo Molnar <[email protected]> --- drivers/idle/intel_idle.c | 2 -- kernel/trace/power-traces.c | 2 +- 2 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index c37ef64..21ac077 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -201,9 +201,7 @@ static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state) kt_before = ktime_get_real(); stop_critical_timings(); -#ifndef MODULE trace_power_start(POWER_CSTATE, (eax >> 4) + 1, cpu); -#endif if (!need_resched()) { __monitor((void *)¤t_thread_info()->flags, 0, 0); diff --git a/kernel/trace/power-traces.c b/kernel/trace/power-traces.c index a22582a..0e0497d 100644 --- a/kernel/trace/power-traces.c +++ b/kernel/trace/power-traces.c @@ -13,5 +13,5 @@ #define CREATE_TRACE_POINTS #include <trace/events/power.h> -EXPORT_TRACEPOINT_SYMBOL_GPL(power_frequency); +EXPORT_TRACEPOINT_SYMBOL_GPL(power_start); -- 1.6.0.2 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
