From: Andrew Morton drivers/acpi/processor_idle.c: In function 'acpi_idle_enter_c2': drivers/acpi/processor_idle.c:941: error: too few arguments to function 'mark_tsc_unstable' drivers/acpi/processor_idle.c: In function 'acpi_idle_enter_c3': drivers/acpi/processor_idle.c:1026: error: too few arguments to function 'mark_tsc_unstable' also fix coding-style bloopers. Cc: Len Brown Signed-off-by: Andrew Morton --- drivers/acpi/processor_idle.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/acpi/processor_idle.c~git-acpi-mark_tsc_unstable-build-fix drivers/acpi/processor_idle.c --- a/drivers/acpi/processor_idle.c~git-acpi-mark_tsc_unstable-build-fix +++ a/drivers/acpi/processor_idle.c @@ -936,9 +936,9 @@ static int acpi_idle_enter_c2(struct cpu acpi_idle_do_entry(cx); t2 = inl(acpi_gbl_FADT.xpm_timer_block.address); -#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) +#if defined(CONFIG_GENERIC_TIME) && defined(CONFIG_X86_TSC) /* TSC halts in C2, so notify users */ - mark_tsc_unstable(); + mark_tsc_unstable("acpi_idle_enter_c2"); #endif local_irq_enable(); @@ -1021,9 +1021,9 @@ static int acpi_idle_enter_c3(struct cpu spin_unlock(&c3_lock); } -#if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC) +#if defined(CONFIG_GENERIC_TIME) && defined(CONFIG_X86_TSC) /* TSC halts in C3, so notify users */ - mark_tsc_unstable(); + mark_tsc_unstable("acpi_idle_enter_c3"); #endif local_irq_enable(); _