Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc: Fix typo in breakpoint kgdb code.

Currently we are getting:
arch/powerpc/kernel/kgdb.c: In function 'kgdb_arch_exit':
arch/powerpc/kernel/kgdb.c:492:2: error: '__debugger_breakx_match' undeclared (first use in this function)
arch/powerpc/kernel/kgdb.c:492:2: note: each undeclared identifier is reported only once for each function it appears in

Fix the typo.

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by

Michael Neuling and committed by
Benjamin Herrenschmidt
fa592464 1715a826

+1 -1
+1 -1
arch/powerpc/kernel/kgdb.c
··· 489 489 __debugger_bpt = old__debugger_bpt; 490 490 __debugger_sstep = old__debugger_sstep; 491 491 __debugger_iabr_match = old__debugger_iabr_match; 492 - __debugger_breakx_match = old__debugger_break_match; 492 + __debugger_break_match = old__debugger_break_match; 493 493 __debugger_fault_handler = old__debugger_fault_handler; 494 494 }