blob: bc489243a8a6df48e2f4808ae94f9248648e2606 [file] [log] [blame]
/*
* Copyright (c) 2016 Park Bumgyu, Samsung Electronics Co., Ltd <bumgyu.park@samsung.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* General Exynos cpufreq driver implementation
*/
#ifdef CONFIG_ARM_EXYNOS_ACME
extern unsigned int exynos_cpufreq_get_max_freq(struct cpumask *mask);
extern void exynos_cpufreq_reset_boot_qos(void);
#else
static inline unsigned int exynos_cpufreq_get_max_freq(struct cpumask *mask)
{
return 0;
}
static inline void exynos_cpufreq_reset_boot_qos(void) {}
#endif