Skip to content

Commit

Permalink
traps: i386: expand clear_mem_error and remove from mach_traps.h
Browse files Browse the repository at this point in the history
This is the last user of clear_mem_error, which is defined
only on i386. Expand the inline function and remove it from
include/asm-x86/mach-default/mach_traps.h

Signed-off-by: Alexander van Heukelum <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
  • Loading branch information
heukelum authored and Ingo Molnar committed Oct 13, 2008
1 parent 1c9af8a commit 7970479
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 2 additions & 1 deletion arch/x86/kernel/traps_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,8 @@ mem_parity_error(unsigned char reason, struct pt_regs *regs)
printk(KERN_EMERG "Dazed and confused, but trying to continue\n");

/* Clear and disable the memory parity error line. */
clear_mem_error(reason);
reason = (reason & 0xf) | 4;
outb(reason, 0x61);
}

static notrace __kprobes void
Expand Down
6 changes: 0 additions & 6 deletions include/asm-x86/mach-default/mach_traps.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@

#include <asm/mc146818rtc.h>

static inline void clear_mem_error(unsigned char reason)
{
reason = (reason & 0xf) | 4;
outb(reason, 0x61);
}

static inline unsigned char get_nmi_reason(void)
{
return inb(0x61);
Expand Down

0 comments on commit 7970479

Please sign in to comment.