On Tue, 4 Dec 2007 17:25:45 +0100 Jesper Nilsson <[email protected]> wrote:
> +#ifdef CONFIG_CPU_FREQ
> + cpufreq_register_notifier(&cris_time_freq_notifier_block,
> + CPUFREQ_TRANSITION_NOTIFIER);
> #endif
include/linux/cpufreq.h has
#ifdef CONFIG_CPU_FREQ
...
#else /* CONFIG_CPU_FREQ */
static inline int cpufreq_register_notifier(struct notifier_block *nb,
unsigned int list)
{
return 0;
}
the idea is that you remove the above ifdefs and also the ifdefs around
cris_time_freq_notifier_block and then gcc magically removes
cris_time_freq_notifier_block from your generated code.
Advantages: no ifdefs, and full typechecking even when CONFIG_CPU_FREQ=n.
cpufreq_register_notifier() can fail but this code pretends otherwise...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]