summaryrefslogtreecommitdiff
path: root/src/arch/x86/null_breakpoint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/null_breakpoint.c')
-rw-r--r--src/arch/x86/null_breakpoint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/null_breakpoint.c b/src/arch/x86/null_breakpoint.c
index 43e3727448..44c7ae91c4 100644
--- a/src/arch/x86/null_breakpoint.c
+++ b/src/arch/x86/null_breakpoint.c
@@ -12,7 +12,7 @@ static struct breakpoint_handle null_fetch_bp;
static int handle_fetch_breakpoint(struct breakpoint_handle handle, struct eregs *regs)
{
printk(BIOS_ERR, "Instruction fetch from address zero\n");
- return CONFIG(DEBUG_NULL_DEREF_HALT);
+ return 0;
}
static int handle_deref_breakpoint(struct breakpoint_handle handle, struct eregs *regs)
@@ -22,7 +22,7 @@ static int handle_deref_breakpoint(struct breakpoint_handle handle, struct eregs
#else
printk(BIOS_ERR, "Null dereference at eip: 0x%x\n", regs->eip);
#endif
- return CONFIG(DEBUG_NULL_DEREF_HALT);
+ return 0;
}
static void create_deref_breakpoint(void)