diff options
author | David Rientjes <rientjes@google.com> | 2014-02-05 11:54:58 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2014-02-09 18:15:07 +0400 |
commit | d3c63ae1e2e35e4250390c079dc3fb7291347f5c (patch) | |
tree | 26cccf9c74d11e0a9c48bacb13d7705752fd4880 /arch/x86/include/asm | |
parent | 494479038d97f1b9f76fc633a360a681acdf035c (diff) | |
download | linux-d3c63ae1e2e35e4250390c079dc3fb7291347f5c.tar.xz |
x86/apic: Only use default_wait_for_init_deassert()
es7000_wait_for_init_deassert() is functionally equivalent to
default_wait_for_init_deassert(), so remove the duplicate code
and use only a single function.
Signed-off-by: David Rientjes <rientjes@google.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/alpine.DEB.2.02.1402042353030.7839@chino.kir.corp.google.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include/asm')
-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 1d2091a226bc..2ef701381e2a 100644 --- a/arch/x86/include/asm/apic.h +++ b/arch/x86/include/asm/apic.h @@ -521,7 +521,6 @@ static inline void default_wait_for_init_deassert(atomic_t *deassert) { while (!atomic_read(deassert)) cpu_relax(); - return; } extern void generic_bigsmp_probe(void); |