Commit eefc3f329d93404bfe1285d5b2f4380fede42e89

Authored by Andrea Gelmini
Committed by Ralf Baechle
1 parent c6ea21e35b

MIPS: Fix a typo.

"Userpace" -> "Userspace"

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Cc: Andrea Gelmini <andrea.gelmini@gelma.net>
Cc: Jason Wessel <jason.wessel@windriver.com>
Cc: Martin Hicks <mort@sgi.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1536/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/mips/kernel/kgdb.c
... ... @@ -283,7 +283,7 @@
283 283 struct pt_regs *regs = args->regs;
284 284 int trap = (regs->cp0_cause & 0x7c) >> 2;
285 285  
286   - /* Userpace events, ignore. */
  286 + /* Userspace events, ignore. */
287 287 if (user_mode(regs))
288 288 return NOTIFY_DONE;
289 289