diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-10-03 08:41:19 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:32:35 -0400 |
commit | 2f69ddccb01632dfe5d0ef946ee99000463cd9c4 (patch) | |
tree | 92a4e77e077718d08c6733f7abe604ca0c132042 /arch/mips/vr41xx | |
parent | 57468af3267bfb89391f9c607a9637e86e55d299 (diff) |
Convert the remaining SPIN_LOCK_UNLOCKED instances to DEFINE_SPINLOCK.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/vr41xx')
-rw-r--r-- | arch/mips/vr41xx/common/cmu.c | 2 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/vrc4173.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/vr41xx/common/cmu.c b/arch/mips/vr41xx/common/cmu.c index fcd3cb8cdd9d..d758e432961b 100644 --- a/arch/mips/vr41xx/common/cmu.c +++ b/arch/mips/vr41xx/common/cmu.c | |||
@@ -69,7 +69,7 @@ | |||
69 | 69 | ||
70 | static void __iomem *cmu_base; | 70 | static void __iomem *cmu_base; |
71 | static uint16_t cmuclkmsk, cmuclkmsk2; | 71 | static uint16_t cmuclkmsk, cmuclkmsk2; |
72 | static spinlock_t cmu_lock; | 72 | static DEFINE_SPINLOCK(cmu_lock); |
73 | 73 | ||
74 | #define cmu_read(offset) readw(cmu_base + (offset)) | 74 | #define cmu_read(offset) readw(cmu_base + (offset)) |
75 | #define cmu_write(offset, value) writew((value), cmu_base + (offset)) | 75 | #define cmu_write(offset, value) writew((value), cmu_base + (offset)) |
diff --git a/arch/mips/vr41xx/common/vrc4173.c b/arch/mips/vr41xx/common/vrc4173.c index ba58764ef8ea..462a9af30eef 100644 --- a/arch/mips/vr41xx/common/vrc4173.c +++ b/arch/mips/vr41xx/common/vrc4173.c | |||
@@ -81,8 +81,8 @@ EXPORT_SYMBOL(vrc4173_io_offset); | |||
81 | static int vrc4173_initialized; | 81 | static int vrc4173_initialized; |
82 | static uint16_t vrc4173_cmuclkmsk; | 82 | static uint16_t vrc4173_cmuclkmsk; |
83 | static uint16_t vrc4173_selectreg; | 83 | static uint16_t vrc4173_selectreg; |
84 | static spinlock_t vrc4173_cmu_lock; | 84 | static DEFINE_SPINLOCK(vrc4173_cmu_lock); |
85 | static spinlock_t vrc4173_giu_lock; | 85 | static DEFINE_SPINLOCK(vrc4173_giu_lock); |
86 | 86 | ||
87 | static inline void set_cmusrst(uint16_t val) | 87 | static inline void set_cmusrst(uint16_t val) |
88 | { | 88 | { |