Skip to content

Commit

Permalink
i386: hard_{en,dis}able_TSC can be static
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Jan Beulich authored and Ingo Molnar committed Jan 30, 2008
1 parent d6be29b commit bdb4f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/process_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
}

#ifdef CONFIG_SECCOMP
void hard_disable_TSC(void)
static void hard_disable_TSC(void)
{
write_cr4(read_cr4() | X86_CR4_TSD);
}
Expand All @@ -603,7 +603,7 @@ void disable_TSC(void)
hard_disable_TSC();
preempt_enable();
}
void hard_enable_TSC(void)
static void hard_enable_TSC(void)
{
write_cr4(read_cr4() & ~X86_CR4_TSD);
}
Expand Down
2 changes: 0 additions & 2 deletions include/asm-x86/processor_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,7 @@ extern int bootloader_type;

#define HAVE_ARCH_PICK_MMAP_LAYOUT

extern void hard_disable_TSC(void);
extern void disable_TSC(void);
extern void hard_enable_TSC(void);

/*
* Size of io_bitmap.
Expand Down

0 comments on commit bdb4f15

Please sign in to comment.