2008-01-15 22:23:10

by Frank Rowand

[permalink] [raw]
Subject: [PATCH 4/4] RT: change from raw_spinlock_t to __raw_spinlock_t

From: Frank Rowand <[email protected]>

Fix compile warning (which becomes compile error due to -Werror),
by changing from raw_spinlock_t to __raw_spinlock_t.

Signed-off-by: Frank Rowand <[email protected]>
---
arch/mips/kernel/gdb-stub.c | 2 1 + 1 - 0 !
1 files changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.24-rc7/arch/mips/kernel/gdb-stub.c
===================================================================
--- linux-2.6.24-rc7.orig/arch/mips/kernel/gdb-stub.c
+++ linux-2.6.24-rc7/arch/mips/kernel/gdb-stub.c
@@ -177,7 +177,7 @@ int kgdb_enabled;
* spin locks for smp case
*/
static DEFINE_SPINLOCK(kgdb_lock);
-static raw_spinlock_t kgdb_cpulock[NR_CPUS] = {
+static __raw_spinlock_t kgdb_cpulock[NR_CPUS] = {
[0 ... NR_CPUS-1] = __RAW_SPIN_LOCK_UNLOCKED,
};




2008-01-16 02:17:43

by Steven Rostedt

[permalink] [raw]
Subject: Re: [PATCH 4/4] RT: change from raw_spinlock_t to __raw_spinlock_t

On Tue, Jan 15, 2008 at 02:21:46PM -0800, Frank Rowand wrote:
> From: Frank Rowand <[email protected]>
>
> Fix compile warning (which becomes compile error due to -Werror),
> by changing from raw_spinlock_t to __raw_spinlock_t.
>

Applied.

Thanks,

-- Steve