diff options
Diffstat (limited to 'arch/arm64/kernel/kgdb.c')
-rw-r--r-- | arch/arm64/kernel/kgdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/kernel/kgdb.c b/arch/arm64/kernel/kgdb.c index 75c9cf1aafee..a0d10c55f307 100644 --- a/arch/arm64/kernel/kgdb.c +++ b/arch/arm64/kernel/kgdb.c | |||
@@ -235,13 +235,13 @@ static int kgdb_step_brk_fn(struct pt_regs *regs, unsigned int esr) | |||
235 | 235 | ||
236 | static struct break_hook kgdb_brkpt_hook = { | 236 | static struct break_hook kgdb_brkpt_hook = { |
237 | .esr_mask = 0xffffffff, | 237 | .esr_mask = 0xffffffff, |
238 | .esr_val = DBG_ESR_VAL_BRK(KGDB_DYN_DGB_BRK_IMM), | 238 | .esr_val = DBG_ESR_VAL_BRK(KGDB_DYN_DBG_BRK_IMM), |
239 | .fn = kgdb_brk_fn | 239 | .fn = kgdb_brk_fn |
240 | }; | 240 | }; |
241 | 241 | ||
242 | static struct break_hook kgdb_compiled_brkpt_hook = { | 242 | static struct break_hook kgdb_compiled_brkpt_hook = { |
243 | .esr_mask = 0xffffffff, | 243 | .esr_mask = 0xffffffff, |
244 | .esr_val = DBG_ESR_VAL_BRK(KDBG_COMPILED_DBG_BRK_IMM), | 244 | .esr_val = DBG_ESR_VAL_BRK(KGDB_COMPILED_DBG_BRK_IMM), |
245 | .fn = kgdb_compiled_brk_fn | 245 | .fn = kgdb_compiled_brk_fn |
246 | }; | 246 | }; |
247 | 247 | ||