Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH] Make KGDB compile again
@ 2006-01-06 16:38 Sergei Shtylylov
  0 siblings, 0 replies; only message in thread
From: Sergei Shtylylov @ 2006-01-06 16:38 UTC (permalink / raw)
  To: Linux MIPS; +Cc: Manish Lachwani, ralf

[-- Attachment #1: Type: text/plain, Size: 148 bytes --]

Hello.

     The last commit to arch/mips/kernel/gdb-stub.c introduced a stupid typo
into the spinlock initializer, here's the fix...

WBR, Sergei


[-- Attachment #2: KGDB-fix-spinlock-init.patch --]
[-- Type: text/plain, Size: 405 bytes --]

diff --git a/arch/mips/kernel/gdb-stub.c b/arch/mips/kernel/gdb-stub.c
index 96d18c4..0b2c44f 100644
--- a/arch/mips/kernel/gdb-stub.c
+++ b/arch/mips/kernel/gdb-stub.c
@@ -178,7 +178,7 @@ int kgdb_enabled;
  */
 static DEFINE_SPINLOCK(kgdb_lock);
 static raw_spinlock_t kgdb_cpulock[NR_CPUS] = {
-	[0 ... NR_CPUS-1] = __RAW_SPIN_LOCK_UNLOCKED;
+	[0 ... NR_CPUS-1] = __RAW_SPIN_LOCK_UNLOCKED
 };
 
 /*




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-01-06 16:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-06 16:38 [PATCH] Make KGDB compile again Sergei Shtylylov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox