blob: 15c59c3b1c84972a1f09307f51f396dacb55cf98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (C) ST-Ericsson SA 2011
*
* License Terms: GNU General Public License v2
*/
#ifndef __CPUFREQ_DBX500_H
#define __CPUFREQ_DBX500_H
#include <linux/cpufreq.h>
int dbx500_cpufreq_get_limits(int cpu, int r,
unsigned int *min, unsigned int *max);
int dbx500_cpufreq_percent2freq(int percent);
#endif
|