diff options
author | Andrew Morton <akpm@osdl.org> | 2006-03-22 00:07:46 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-22 07:53:56 -0800 |
commit | f4a641d66c6e135dcfc861521e8008faed2411e1 (patch) | |
tree | 0d8e93949c646479ac39760bd6c0e7afcb96e4a6 /arch/frv | |
parent | 83485f826bea154a0ab41e9b8689105531dd7cb2 (diff) | |
download | linux-3.10-f4a641d66c6e135dcfc861521e8008faed2411e1.tar.gz linux-3.10-f4a641d66c6e135dcfc861521e8008faed2411e1.tar.bz2 linux-3.10-f4a641d66c6e135dcfc861521e8008faed2411e1.zip |
[PATCH] multiple exports of strpbrk
Sam's tree includes a new check, which found that we're exporting strpbrk()
multiple times.
It seems that the convention is that this is exported from the arch files, so
reove the lib/string.c export.
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: David Howells <dhowells@redhat.com>
Cc: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/kernel/frv_ksyms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/frv/kernel/frv_ksyms.c b/arch/frv/kernel/frv_ksyms.c index 0f1c6cbc4f5..aa6b7d0a210 100644 --- a/arch/frv/kernel/frv_ksyms.c +++ b/arch/frv/kernel/frv_ksyms.c @@ -27,6 +27,7 @@ EXPORT_SYMBOL(__ioremap); EXPORT_SYMBOL(iounmap); EXPORT_SYMBOL(strnlen); +EXPORT_SYMBOL(strpbrk); EXPORT_SYMBOL(strrchr); EXPORT_SYMBOL(strstr); EXPORT_SYMBOL(strchr); |