summaryrefslogtreecommitdiffstats
path: root/arch/m32r
diff options
context:
space:
mode:
authorSudip Mukherjee2016-05-24 01:22:23 +0200
committerLinus Torvalds2016-05-24 02:04:14 +0200
commitededb49a9aa54960fce35c705d505d409f5b5483 (patch)
tree5239eb88563351a5d02d594126a88b26d9a91445 /arch/m32r
parentMerge tag 'trace-v4.7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ros... (diff)
downloadkernel-qcow2-linux-ededb49a9aa54960fce35c705d505d409f5b5483.tar.gz
kernel-qcow2-linux-ededb49a9aa54960fce35c705d505d409f5b5483.tar.xz
kernel-qcow2-linux-ededb49a9aa54960fce35c705d505d409f5b5483.zip
m32r: fix build failure
m32r allmodconfig build was failing with the error: ERROR: "smp_flush_cache_all" [drivers/misc/lkdtm.ko] undefined! lkdtm driver at drivers/misc is using flush_icache_range() which for m32r is defined as smp_flush_cache_all() if CONFIG_SMP is defined. But as smp_flush_cache_all() was not exported so the build was failing with the error of undefined symbol. Link: http://lkml.kernel.org/r/1464001182-8329-1-git-send-email-sudipm.mukherjee@gmail.com Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m32r')
-rw-r--r--arch/m32r/kernel/smp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/m32r/kernel/smp.c b/arch/m32r/kernel/smp.c
index 62d6961e7f2b..564052e3d3a0 100644
--- a/arch/m32r/kernel/smp.c
+++ b/arch/m32r/kernel/smp.c
@@ -164,6 +164,7 @@ void smp_flush_cache_all(void)
spin_unlock(&flushcache_lock);
preempt_enable();
}
+EXPORT_SYMBOL(smp_flush_cache_all);
void smp_flush_cache_all_interrupt(void)
{