diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2008-12-30 22:46:36 +0530 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-12-30 13:31:28 -0800 |
commit | ec8c842a524888fdcccece337d91798e3e8af880 (patch) | |
tree | b1296c9af3be9bc75c67ba9812e84d10d7811c25 /arch/x86/include/asm/apic.h | |
parent | c62e9d56ea90ef94f9708ce3f11860c20fa5e135 (diff) |
x86: apic.c: xapic_icr_read and x2apic_icr_read should be static
Impact: cleanup, reduce kernel size a bit, avoid sparse warning
Fixes sparse warning:
arch/x86/kernel/apic.c:270:5: warning: symbol 'x2apic_icr_read' was not declared. Should it be static?
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/include/asm/apic.h')
-rw-r--r-- | arch/x86/include/asm/apic.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h index e644bf6f90d..ab1d51a8855 100644 --- a/arch/x86/include/asm/apic.h +++ b/arch/x86/include/asm/apic.h @@ -54,7 +54,6 @@ extern int disable_apic; extern int is_vsmp_box(void); extern void xapic_wait_icr_idle(void); extern u32 safe_xapic_wait_icr_idle(void); -extern u64 xapic_icr_read(void); extern void xapic_icr_write(u32, u32); extern int setup_profiling_timer(unsigned int); |