aboutsummaryrefslogtreecommitdiffstats
path: root/arch/unicore32/kernel/ksyms.c
diff options
context:
space:
mode:
authorGuan Xuetao <gxt@mprc.pku.edu.cn>2011-06-13 11:44:49 +0800
committerGuan Xuetao <gxt@mprc.pku.edu.cn>2011-11-15 17:13:14 +0800
commite13b91c1c47e7be178d2d7914452040ee82c0bd2 (patch)
treefa4cde596c571eff0db507887165b6a50cefe327 /arch/unicore32/kernel/ksyms.c
parentMerge branch 'rmobile-fixes-for-linus' of git://github.com/pmundt/linux-sh (diff)
downloadlinux-dev-e13b91c1c47e7be178d2d7914452040ee82c0bd2.tar.xz
linux-dev-e13b91c1c47e7be178d2d7914452040ee82c0bd2.zip
unicore32: fix build error for find bitops
Remove the __uc32_ prefix in find bitops functions. Move find_* macros behind asm-generic/bitops.h inclusion. see commit <19de85ef574c3a2182e3ccad9581805052f14946> bitops: add #ifndef for each of find bitops also see commit <63e424c84429903c92a0f1e9654c31ccaf6694d0> arch: remove CONFIG_GENERIC_FIND_{NEXT_BIT,BIT_LE,LAST_BIT} Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn> Cc: Akinobu Mita <akinobu.mita@gmail.com> Acked-by: Akinobu Mita <akinobu.mita@gmail.com> Cc: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/unicore32/kernel/ksyms.c')
-rw-r--r--arch/unicore32/kernel/ksyms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/unicore32/kernel/ksyms.c b/arch/unicore32/kernel/ksyms.c
index a8970809428a..d98bd812cae1 100644
--- a/arch/unicore32/kernel/ksyms.c
+++ b/arch/unicore32/kernel/ksyms.c
@@ -24,8 +24,8 @@
#include "ksyms.h"
-EXPORT_SYMBOL(__uc32_find_next_zero_bit);
-EXPORT_SYMBOL(__uc32_find_next_bit);
+EXPORT_SYMBOL(find_next_zero_bit);
+EXPORT_SYMBOL(find_next_bit);
EXPORT_SYMBOL(__backtrace);