Skip to content

Commit

Permalink
ARM: OMAP: Make clock variables static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Juha Yrjola authored and Tony Lindgren committed Jun 26, 2006
1 parent 2aab646 commit 7df3450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/plat-omap/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

#include <asm/arch/clock.h>

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;

Expand Down

0 comments on commit 7df3450

Please sign in to comment.