From: Juha Yrjola Date: Mon, 26 Jun 2006 23:16:22 +0000 (-0700) Subject: ARM: OMAP: Make clock variables static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7df3450e5c22ba3969e4253dce0d7807dd210bf0;p=linux-beck.git 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 Signed-off-by: Tony Lindgren --- 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 @@ #include -LIST_HEAD(clocks); +static LIST_HEAD(clocks); static DEFINE_MUTEX(clocks_mutex); -DEFINE_SPINLOCK(clockfw_lock); +static DEFINE_SPINLOCK(clockfw_lock); static struct clk_functions *arch_clock;