aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arc/include/asm/clk.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arc/include/asm/clk.h')
-rw-r--r--arch/arc/include/asm/clk.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/arc/include/asm/clk.h b/arch/arc/include/asm/clk.h
deleted file mode 100644
index bf9d29f5bd53..000000000000
--- a/arch/arc/include/asm/clk.h
+++ /dev/null
@@ -1,22 +0,0 @@
1/*
2 * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef _ASM_ARC_CLK_H
10#define _ASM_ARC_CLK_H
11
12/* Although we can't really hide core_freq, the accessor is still better way */
13extern unsigned long core_freq;
14
15static inline unsigned long arc_get_core_freq(void)
16{
17 return core_freq;
18}
19
20extern int arc_set_core_freq(unsigned long);
21
22#endif