aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s3c24xx/include
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/plat-s3c24xx/include')
-rw-r--r--arch/arm/plat-s3c24xx/include/plat/clock.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c24xx/include/plat/clock.h b/arch/arm/plat-s3c24xx/include/plat/clock.h
index 235b753cd877..88a00c35b685 100644
--- a/arch/arm/plat-s3c24xx/include/plat/clock.h
+++ b/arch/arm/plat-s3c24xx/include/plat/clock.h
@@ -10,6 +10,8 @@
10 * published by the Free Software Foundation. 10 * published by the Free Software Foundation.
11*/ 11*/
12 12
13#include <linux/spinlock.h>
14
13struct clk { 15struct clk {
14 struct list_head list; 16 struct list_head list;
15 struct module *owner; 17 struct module *owner;
@@ -51,7 +53,7 @@ extern struct clk clk_xtal;
51 * Please DO NOT use these outside of arch/arm/mach-s3c2410 53 * Please DO NOT use these outside of arch/arm/mach-s3c2410
52*/ 54*/
53 55
54extern struct mutex clocks_mutex; 56extern spinlock_t clocks_lock;
55 57
56extern int s3c2410_clkcon_enable(struct clk *clk, int enable); 58extern int s3c2410_clkcon_enable(struct clk *clk, int enable);
57 59