diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-08-08 18:11:26 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-09-21 11:57:49 +0900 |
commit | f7f86345fd0cf951613e76e4d00f1f6e8cd11f81 (patch) | |
tree | f55a387d6a3ff4faa76d145f688925fe6eff349f | |
parent | e289fd972c9943e51c46929e9dbec3cc4558a6b8 (diff) | |
download | linux-f7f86345fd0cf951613e76e4d00f1f6e8cd11f81.tar.gz linux-f7f86345fd0cf951613e76e4d00f1f6e8cd11f81.tar.bz2 linux-f7f86345fd0cf951613e76e4d00f1f6e8cd11f81.zip |
sh: Kill off duplicate symbol exports on SMP.
synchronize_irq() was being exported twice, kill off the duplicate
export.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/sh_ksyms.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/sh/kernel/sh_ksyms.c b/arch/sh/kernel/sh_ksyms.c index de250705c35e..89362e05cc46 100644 --- a/arch/sh/kernel/sh_ksyms.c +++ b/arch/sh/kernel/sh_ksyms.c @@ -53,6 +53,7 @@ EXPORT_SYMBOL(get_vm_area); EXPORT_SYMBOL(__up); EXPORT_SYMBOL(__down); EXPORT_SYMBOL(__down_interruptible); +EXPORT_SYMBOL(__down_trylock); EXPORT_SYMBOL(__udelay); EXPORT_SYMBOL(__ndelay); @@ -142,12 +143,6 @@ EXPORT_SYMBOL(__flush_purge_region); EXPORT_SYMBOL(clear_user_page); #endif -EXPORT_SYMBOL(__down_trylock); - -#ifdef CONFIG_SMP -EXPORT_SYMBOL(synchronize_irq); -#endif - EXPORT_SYMBOL(csum_partial); EXPORT_SYMBOL(csum_partial_copy_generic); #ifdef CONFIG_IPV6 |