diff options
author | Kyle McMartin | 2006-04-11 07:53:56 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-04-11 15:18:40 +0200 |
commit | 894b5779ceeabdce139068310e58bcf51ed9bb22 (patch) | |
tree | a5235a777d109a22a3867a8e31e2dcf40fb21bc0 /arch/m68k/kernel | |
parent | [PATCH] Configurable NODES_SHIFT (diff) | |
download | kernel-qcow2-linux-894b5779ceeabdce139068310e58bcf51ed9bb22.tar.gz kernel-qcow2-linux-894b5779ceeabdce139068310e58bcf51ed9bb22.tar.xz kernel-qcow2-linux-894b5779ceeabdce139068310e58bcf51ed9bb22.zip |
[PATCH] No arch-specific strpbrk implementations
While cleaning up parisc_ksyms.c earlier, I noticed that strpbrk wasn't
being exported from lib/string.c. Investigating further, I noticed a
changeset that removed its export and added it to _ksyms.c on a few more
architectures. The justification was that "other arches do it."
I think this is wrong, since no architecture currently defines
__HAVE_ARCH_STRPBRK, there's no reason for any of them to be exporting it
themselves. Therefore, consolidate the export to lib/string.c.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r-- | arch/m68k/kernel/m68k_ksyms.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/m68k/kernel/m68k_ksyms.c b/arch/m68k/kernel/m68k_ksyms.c index c3319514a85e..5b7952ea2bae 100644 --- a/arch/m68k/kernel/m68k_ksyms.c +++ b/arch/m68k/kernel/m68k_ksyms.c @@ -57,7 +57,6 @@ EXPORT_SYMBOL(dump_thread); EXPORT_SYMBOL(strnlen); EXPORT_SYMBOL(strrchr); EXPORT_SYMBOL(strstr); -EXPORT_SYMBOL(strpbrk); EXPORT_SYMBOL(enable_irq); EXPORT_SYMBOL(disable_irq); EXPORT_SYMBOL(kernel_thread); |