From: Juha Yrjola Date: Mon, 26 Jun 2006 23:16:22 +0000 (-0700) Subject: ARM: OMAP: Make clock variables static X-Git-Tag: v2.6.18-rc1~145^2~14^2~3 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=7df3450e5c22ba3969e4253dce0d7807dd210bf0;p=linux-2.6-omap-h63xx.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 32ec04c58bc..dcd9d81201f 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;