From: Juha Yrjola Date: Mon, 19 Jun 2006 15:31:20 +0000 (+0300) Subject: OMAP: Make clock variables static X-Git-Tag: v2.6.17-omap1~19 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=fca591f6e39ff99329689f855c0b116f76c81754;p=linux-2.6-omap-h63xx.git 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 --- diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index 3d47bdcfb25..d56c063fa7e 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;