mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
ARM: fix lh7a40x build
No idea if this platform actually uses cpufreq_get(), but it doesn't have any cpufreq drivers. That's not to say it doesn't use cpufreq_get() in its drivers. LH7a40x is unmaintained anyhow, and should probably be killed off. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
1937f5b918
commit
9074e144c1
1 changed files with 0 additions and 8 deletions
|
@ -7,8 +7,6 @@
|
||||||
* version 2 as published by the Free Software Foundation.
|
* version 2 as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/cpufreq.h>
|
|
||||||
#include <mach/hardware.h>
|
#include <mach/hardware.h>
|
||||||
#include <mach/clocks.h>
|
#include <mach/clocks.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
|
@ -31,12 +29,6 @@ struct clk {
|
||||||
#define HCLKDIV(c) (((c) >> 0) & 0x02)
|
#define HCLKDIV(c) (((c) >> 0) & 0x02)
|
||||||
#define PCLKDIV(c) (((c) >> 16) & 0x03)
|
#define PCLKDIV(c) (((c) >> 16) & 0x03)
|
||||||
|
|
||||||
unsigned int cpufreq_get (unsigned int cpu) /* in kHz */
|
|
||||||
{
|
|
||||||
return fclkfreq_get ()/1000;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(cpufreq_get);
|
|
||||||
|
|
||||||
unsigned int fclkfreq_get (void)
|
unsigned int fclkfreq_get (void)
|
||||||
{
|
{
|
||||||
unsigned int clkset = CSC_CLKSET;
|
unsigned int clkset = CSC_CLKSET;
|
||||||
|
|
Loading…
Reference in a new issue