diff options
author | Juha Yrjola <juha.yrjola@solidboot.com> | 2006-06-26 19:16:22 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2006-06-26 19:16:22 -0400 |
commit | 7df3450e5c22ba3969e4253dce0d7807dd210bf0 (patch) | |
tree | 2fca1bc751392583f4e7c4396f1e93e024c7933b /arch/arm/plat-omap/clock.c | |
parent | 2aab6468b7f88df60828f8e07cfdf8c87338ed8d (diff) |
ARM: OMAP: Make clock variables static
Since the mutex protecting the clock list is static, the list
itself should be too.
Signed-off-by: Juha Yrjola <juha.yrjola@solidboot.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap/clock.c')
-rw-r--r-- | arch/arm/plat-omap/clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index 32ec04c58bcd..dcd9d81201fa 100644 --- a/arch/arm/plat-omap/clock.c +++ b/arch/arm/plat-omap/clock.c | |||
@@ -28,9 +28,9 @@ | |||
28 | 28 | ||
29 | #include <asm/arch/clock.h> | 29 | #include <asm/arch/clock.h> |
30 | 30 | ||
31 | LIST_HEAD(clocks); | 31 | static LIST_HEAD(clocks); |
32 | static DEFINE_MUTEX(clocks_mutex); | 32 | static DEFINE_MUTEX(clocks_mutex); |
33 | DEFINE_SPINLOCK(clockfw_lock); | 33 | static DEFINE_SPINLOCK(clockfw_lock); |
34 | 34 | ||
35 | static struct clk_functions *arch_clock; | 35 | static struct clk_functions *arch_clock; |
36 | 36 | ||