Skip to content

Commit

Permalink
x86, mce: remove mce_init unused argument
Browse files Browse the repository at this point in the history
Remove unused mce_init argument.

[ Impact: cleanup ]

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
  • Loading branch information
Thomas Gleixner authored and H. Peter Anvin committed May 28, 2009
1 parent fc016a4 commit 8be9110
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/x86/kernel/cpu/mcheck/mce.c
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ static int mce_cap_init(void)
return 0;
}

static void mce_init(void *dummy)
static void mce_init(void)
{
mce_banks_t all_banks;
u64 cap;
Expand Down Expand Up @@ -776,7 +776,7 @@ void __cpuinit mcheck_init(struct cpuinfo_x86 *c)

machine_check_vector = do_machine_check;

mce_init(NULL);
mce_init();
mce_cpu_features(c);
mce_init_timer();
}
Expand Down Expand Up @@ -1020,7 +1020,7 @@ static int mce_shutdown(struct sys_device *dev)
*/
static int mce_resume(struct sys_device *dev)
{
mce_init(NULL);
mce_init();
mce_cpu_features(&current_cpu_data);

return 0;
Expand All @@ -1030,7 +1030,7 @@ static void mce_cpu_restart(void *data)
{
del_timer_sync(&__get_cpu_var(mce_timer));
if (mce_available(&current_cpu_data))
mce_init(NULL);
mce_init();
mce_init_timer();
}

Expand Down

0 comments on commit 8be9110

Please sign in to comment.