mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-01 00:54:15 +08:00
x86, mce: clean up mce_32.c
Make the coding style match that of the rest of the x86 arch code. [ Impact: cleanup ] Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
e9eee03e99
commit
3b58dfd04b
@ -2,13 +2,12 @@
|
|||||||
* mce.c - x86 Machine Check Exception Reporting
|
* mce.c - x86 Machine Check Exception Reporting
|
||||||
* (c) 2002 Alan Cox <alan@lxorguk.ukuu.org.uk>, Dave Jones <davej@redhat.com>
|
* (c) 2002 Alan Cox <alan@lxorguk.ukuu.org.uk>, Dave Jones <davej@redhat.com>
|
||||||
*/
|
*/
|
||||||
|
#include <linux/thread_info.h>
|
||||||
#include <linux/init.h>
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <linux/types.h>
|
||||||
|
#include <linux/init.h>
|
||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
#include <linux/thread_info.h>
|
|
||||||
|
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/system.h>
|
#include <asm/system.h>
|
||||||
@ -17,18 +16,20 @@
|
|||||||
#include "mce.h"
|
#include "mce.h"
|
||||||
|
|
||||||
int mce_disabled;
|
int mce_disabled;
|
||||||
int nr_mce_banks;
|
|
||||||
|
|
||||||
|
int nr_mce_banks;
|
||||||
EXPORT_SYMBOL_GPL(nr_mce_banks); /* non-fatal.o */
|
EXPORT_SYMBOL_GPL(nr_mce_banks); /* non-fatal.o */
|
||||||
|
|
||||||
/* Handle unconfigured int18 (should never happen) */
|
/* Handle unconfigured int18 (should never happen) */
|
||||||
static void unexpected_machine_check(struct pt_regs *regs, long error_code)
|
static void unexpected_machine_check(struct pt_regs *regs, long error_code)
|
||||||
{
|
{
|
||||||
printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n", smp_processor_id());
|
printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
|
||||||
|
smp_processor_id());
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Call the installed machine check handler for this CPU setup. */
|
/* Call the installed machine check handler for this CPU setup. */
|
||||||
void (*machine_check_vector)(struct pt_regs *, long error_code) = unexpected_machine_check;
|
void (*machine_check_vector)(struct pt_regs *, long error_code) =
|
||||||
|
unexpected_machine_check;
|
||||||
|
|
||||||
/* This has to be run for each processor */
|
/* This has to be run for each processor */
|
||||||
void mcheck_init(struct cpuinfo_x86 *c)
|
void mcheck_init(struct cpuinfo_x86 *c)
|
||||||
|
Loading…
Reference in New Issue
Block a user