diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2008-12-30 18:16:36 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-12-30 22:31:28 +0100 |
commit | ec8c842a524888fdcccece337d91798e3e8af880 (patch) | |
tree | b1296c9af3be9bc75c67ba9812e84d10d7811c25 /arch/x86/include/asm/apic.h | |
parent | x86: bios_uv.c: uv_systab should be static (diff) | |
download | linux-ec8c842a524888fdcccece337d91798e3e8af880.tar.xz linux-ec8c842a524888fdcccece337d91798e3e8af880.zip |
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 e644bf6f90dc..ab1d51a8855e 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); |